Skip to content

Commit 33fab16

Browse files
committed
nemo-window.c: Don't ignore tab events when renaming.
Regression from 0d26d05. Fixes #2591
1 parent 12832b3 commit 33fab16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nemo-window.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1194,7 +1194,7 @@ nemo_window_key_press_event (GtkWidget *widget,
11941194
return FALSE;
11951195
}
11961196

1197-
if (view != NULL && nemo_view_get_is_renaming (view)) {
1197+
if (view != NULL && nemo_view_get_is_renaming (view) && event->keyval != GDK_KEY_F2) {
11981198
/* if we're renaming, just forward the event to the
11991199
* focused widget and return. We don't want to process the window
12001200
* accelerator bindings, as they might conflict with the

0 commit comments

Comments
 (0)