mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-20 02:28:00 +01:00
Fix command-line focus issue on Gecko 1.9.1. Closes issue #133.
--HG-- extra : rebase_source : f7f6caab056b802628c637774fb7e45c89b82b4b
This commit is contained in:
@@ -49,10 +49,10 @@ const CommandWidgets = Class("CommandWidgets", {
|
||||
}
|
||||
catch (e) {}
|
||||
}
|
||||
if (elem.collapsed)
|
||||
if (!elem.collapsed)
|
||||
elem.focus();
|
||||
},
|
||||
onVisibility: function (elem, visible) visible && elem.focus()
|
||||
onVisibility: function (elem, visible) { visible && elem.focus() }
|
||||
});
|
||||
this.addElement({
|
||||
name: "prompt",
|
||||
|
||||
Reference in New Issue
Block a user