1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-03 12:24:19 +01:00

Fix bluring editible windows, I hope.

This commit is contained in:
Kris Maglione
2011-02-24 16:37:22 -05:00
parent bcb2d3e7c9
commit 4b4b735485

View File

@@ -528,7 +528,7 @@ var Dactyl = Module("dactyl", XPCOM(Ci.nsISupportsWeakReference, ModuleBase), {
dactyl.focusedElement.blur();
if (win && Editor.getEditor(win)) {
win.blur();
if (win.frameElement)
if (win.frameElement && false)
win.frameElement.blur();
}
}