From 065c83954279c8022971a4f99a40f34860cf2c54 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Tue, 14 Oct 2003 12:57:27 +0000 Subject: [PATCH 1/1] fix a navigation bug (stupid typo of mine) --- src/mimeview.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/mimeview.c b/src/mimeview.c index b26273e51..8d6d465a2 100644 --- a/src/mimeview.c +++ b/src/mimeview.c @@ -1245,17 +1245,19 @@ static gint icon_key_pressed(GtkWidget *button, GdkEventKey *event, case GDK_n: case GDK_N: BREAK_ON_MODIFIER_KEY(); - if (icon_list_select_by_number(mimeview, num + 1)) + if (icon_list_select_by_number(mimeview, num + 1)) { KEY_PRESS_EVENT_STOP(); return TRUE; + } break; case GDK_p: case GDK_P: BREAK_ON_MODIFIER_KEY(); - if (icon_list_select_by_number(mimeview, num - 1)) + if (icon_list_select_by_number(mimeview, num - 1)) { KEY_PRESS_EVENT_STOP(); return TRUE; + } break; case GDK_y: -- 2.25.1