aboutsummaryrefslogtreecommitdiffhomepage
path: root/desktop
diff options
context:
space:
mode:
authorneauoire <[email protected]>2019-11-06 13:23:16 -0500
committerneauoire <[email protected]>2019-11-06 13:23:16 -0500
commit28a92fdcc0c47f25f2a03e52e93dfdfc4fe067ab (patch)
tree8b7383de0ac82869825c57d9ac7b6e1c8ba8cece /desktop
parentc1113f91987172a13f102f77ad09705989fd77de (diff)
downloadOrca-28a92fdcc0c47f25f2a03e52e93dfdfc4fe067ab.tar.gz
Orca-28a92fdcc0c47f25f2a03e52e93dfdfc4fe067ab.zip
*
Diffstat (limited to 'desktop')
-rw-r--r--desktop/sources/scripts/cursor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/sources/scripts/cursor.js b/desktop/sources/scripts/cursor.js
index 0a91001..0bddaac 100644
--- a/desktop/sources/scripts/cursor.js
+++ b/desktop/sources/scripts/cursor.js
@@ -180,7 +180,7 @@ function Cursor (terminal) {
}
this.inspect = function (name = true, ports = false) {
- if (this.w > 1 || this.h > 1) { return 'multi' }
+ if (this.w !== 0 || this.h !== 0) { return 'multi' }
const port = terminal.portAt(this.x, this.y)
if (port) { return `${port[3]}` }
if (terminal.orca.lockAt(this.x, this.y)) { return 'locked' }