From 4b4b73548546b7c0fcd8bea41af8fcc21b84a234 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Thu, 24 Feb 2011 16:37:22 -0500 Subject: [PATCH] Fix bluring editible windows, I hope. --- common/content/dactyl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } }