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
This commit is contained in:
Matthias Clasen 2011-02-23 19:50:05 -05:00 committed by Bastien Nocera
parent 8053c9561d
commit efaffc1136

View file

@ -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))
{