Skip to content

Commit

Permalink
Commando: Fix regression where commando wouldn't stay open - fixes #2452
Browse files Browse the repository at this point in the history


(integrated from the KomodoIDE master branch change 5c1a4c7e59 by Nathan Rijksen <n.rijksen@gmail.com>)

Komodo/KomodoIDE@5c1a4c7e59
  • Loading branch information
Naatan committed Apr 6, 2017
1 parent e8d3366 commit fb80d06
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/modules/commando/content/sdk/commando.js
Expand Up @@ -169,8 +169,10 @@
});

window.addEventListener("click", onWindowClick);
window.addEventListener("deactivate", function (e) {
c.hide();
window.addEventListener("deactivate", function (e)
{
if (!local.showing)
c.hide();
});
}

Expand Down

0 comments on commit fb80d06

Please sign in to comment.