dwb: prevent blinking cursor and half-focus

master
Pierre Neidhardt 2013-08-04 19:44:12 +02:00
parent 0f4a047f7d
commit 80d48f419f
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
//!javascript
Signal.connect("changeMode", function(wv, mode) {
if (mode == Modes.NormalMode)
{
wv.focusedFrame.inject("document.activeElement.blur();");
}
});