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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user