diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-02-24 16:37:22 -0500 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-02-24 16:37:22 -0500 |
commit | 4b4b73548546b7c0fcd8bea41af8fcc21b84a234 (patch) | |
tree | b23eb650c4461c5d6c2b1fb6e7894ae398f08017 /common/content/dactyl.js | |
parent | bcb2d3e7c945654f56153a349b02bbdb65269f2e (diff) | |
download | pentadactyl-4b4b73548546b7c0fcd8bea41af8fcc21b84a234.tar.gz |
Fix bluring editible windows, I hope.
Diffstat (limited to 'common/content/dactyl.js')
-rw-r--r-- | common/content/dactyl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/dactyl.js b/common/content/dactyl.js index 2dcc44c1..3dd1fbb6 100644 --- a/common/content/dactyl.js +++ b/common/content/dactyl.js @@ -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(); } } |