Browse Source

Fix deselection

master
Fen Dweller 5 years ago
parent
commit
df3483987d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      macrovision.js

+ 1
- 1
macrovision.js View File

@@ -623,7 +623,7 @@ function clickUp(e) {
} }


function deselect(e) { function deselect(e) {
if (e !== undefined && e.which == 1) {
if (e !== undefined && e.which != 1) {
return; return;
} }
if (selected) { if (selected) {


Loading…
Cancel
Save