From c6cf131a940d500296ab8d3da131e891e24fc1f7 Mon Sep 17 00:00:00 2001 From: Scoopta Date: Mon, 30 Sep 2019 21:38:56 -0700 Subject: [PATCH] Shift will no longer cause the search box to pull focus --- src/wofi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wofi.c b/src/wofi.c index 385c97b..fa2be4f 100644 --- a/src/wofi.c +++ b/src/wofi.c @@ -363,6 +363,8 @@ static gboolean key_press(GtkWidget* widget, GdkEvent* event, gpointer data) { return TRUE; } break; + case GDK_KEY_Shift_L:case GDK_KEY_Shift_R: + break; default: if(!gtk_widget_has_focus(entry)) { gtk_entry_grab_focus_without_selecting(GTK_ENTRY(entry));