mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 03:07:58 +01:00
don't enter menu mode when tooltip popups are shown
This commit is contained in:
@@ -79,8 +79,11 @@ function Events() //{{{
|
||||
var popup_count = 0;
|
||||
var active_menubar = false;
|
||||
|
||||
function enterPopupMode()
|
||||
function enterPopupMode(event)
|
||||
{
|
||||
if (event.originalTarget.localName == "tooltip")
|
||||
return;
|
||||
|
||||
popup_count++;
|
||||
vimperator.log("Open popup window count: " + popup_count, 9);
|
||||
vimperator.addMode(null, vimperator.modes.MENU);
|
||||
|
||||
Reference in New Issue
Block a user