aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzbl.c
diff options
context:
space:
mode:
authorGravatar dusanx <ef_dva@yahoo.com>2009-05-03 14:49:47 +0200
committerGravatar dusanx <ef_dva@yahoo.com>2009-05-03 14:49:47 +0200
commit871baf52aa5c5a3d0c2e73c26959e202278d40f7 (patch)
tree0a7755f129369de156355b4b56f00d4f769045a1 /uzbl.c
parentc03a12dbda40090e77ff8bee952a500997870dc1 (diff)
Insert mode bugfix
Diffstat (limited to 'uzbl.c')
-rw-r--r--uzbl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/uzbl.c b/uzbl.c
index 4793dd3..ffae493 100644
--- a/uzbl.c
+++ b/uzbl.c
@@ -688,7 +688,7 @@ key_press_cb (WebKitWebView* page, GdkEventKey* event)
return TRUE;
}
- if (insert_mode && (event->state & modmask))
+ if (insert_mode && ((event->state & modmask) != modmask))
return FALSE;
if (event->keyval == GDK_Escape) {