From efaffc113682d84b0047313a1d88f3e25575e53a Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Wed, 23 Feb 2011 19:50:05 -0500 Subject: [PATCH] Don't exit prematurely There was an accidental exit in the middle of shortcut setup that caused us to not load custom shortcuts. https://bugzilla.gnome.org/show_bug.cgi?id=643098 --- panels/keyboard/keyboard-shortcuts.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/panels/keyboard/keyboard-shortcuts.c b/panels/keyboard/keyboard-shortcuts.c index ba6d92e79..91027eec6 100644 --- a/panels/keyboard/keyboard-shortcuts.c +++ b/panels/keyboard/keyboard-shortcuts.c @@ -686,8 +686,8 @@ reload_sections (GtkBuilder *builder) if (!dir) { g_free (dir_path); - return; - } + continue; + } for (name = g_dir_read_name (dir) ; name ; name = g_dir_read_name (dir)) {