1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-06 16:34:14 +01:00

don't enter menu mode when tooltip popups are shown

This commit is contained in:
Doug Kearns
2007-08-29 13:20:39 +00:00
parent 28a8c6862d
commit 5b0f37b207
2 changed files with 5 additions and 2 deletions

View File

@@ -78,8 +78,11 @@ function Events() //{{{
var active_menubar = false;
function enterPopupMode()
function enterPopupMode(event)
{
if (event.originalTarget.localName == "tooltip")
return;
vimperator.addMode(null, vimperator.modes.MENU);
}