Skip to content

Commit

Permalink
select written text
Browse files Browse the repository at this point in the history
  • Loading branch information
neauoire committed May 23, 2019
1 parent 93cbe9a commit ea2bcb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/sources/scripts/commander.js
Expand Up @@ -59,7 +59,7 @@ export default function Commander (terminal) {
const x = pos[1] ? parseInt(pos[1]) : terminal.cursor.x
const y = pos[2] ? parseInt(pos[2]) : terminal.cursor.y
if (!isNaN(x) && !isNaN(y) && t.length > 0) {
terminal.cursor.select(x, y)
terminal.cursor.select(x, y, t.length)
terminal.cursor.writeBlock([t])
}
}
Expand Down

0 comments on commit ea2bcb3

Please sign in to comment.