Backed out changeset ed121082f103
authorEnno Boland (Gottox) <gottox@s01.de>
Mon, 8 Jun 2009 07:30:50 +0000 (09:30 +0200)
committerEnno Boland (Gottox) <gottox@s01.de>
Mon, 8 Jun 2009 07:30:50 +0000 (09:30 +0200)
unable to use textfields now. Please implement it in a sane way.

surf.c

diff --git a/surf.c b/surf.c
index 989cc51..318d694 100644 (file)
--- a/surf.c
+++ b/surf.c
@@ -183,7 +183,7 @@ keypress(GtkWidget* w, GdkEventKey *ev, gpointer d) {
                        return FALSE;
                }
        }
-        else if(ev->state == GDK_CONTROL_MASK || ev->state == (GDK_CONTROL_MASK | GDK_SHIFT_MASK)) {
+       if(ev->state == GDK_CONTROL_MASK || ev->state == (GDK_CONTROL_MASK | GDK_SHIFT_MASK)) {
                switch(ev->keyval) {
                case GDK_r:
                case GDK_R:
@@ -208,16 +208,6 @@ keypress(GtkWidget* w, GdkEventKey *ev, gpointer d) {
                        return TRUE;
                }
        }
-        else {
-                switch(ev->keyval) {
-                case GDK_k:
-                        webkit_web_view_move_cursor(c->view, GTK_MOVEMENT_DISPLAY_LINES, -1);
-                        return TRUE;
-                case GDK_j:
-                        webkit_web_view_move_cursor(c->view, GTK_MOVEMENT_DISPLAY_LINES, 1);
-                        return TRUE;
-                }
-        }
        return FALSE;
 }