mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-21 23:17:59 +01:00
Fix urlbar focus bug when urlbar is in the menu bar.
--HG-- branch : key-processing
This commit is contained in:
@@ -950,7 +950,8 @@ var Events = Module("events", {
|
|||||||
|
|
||||||
if (event.target instanceof Ci.nsIDOMXULTextBoxElement)
|
if (event.target instanceof Ci.nsIDOMXULTextBoxElement)
|
||||||
for (let e = elem; e instanceof Element; e = e.parentNode)
|
for (let e = elem; e instanceof Element; e = e.parentNode)
|
||||||
if (util.computedStyle(e).visibility !== "visible") {
|
if (util.computedStyle(e).visibility !== "visible" ||
|
||||||
|
e.boxObject && e.boxObject.height === 0) {
|
||||||
elem.blur();
|
elem.blur();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user