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:
parent
8053c9561d
commit
efaffc1136
1 changed files with 2 additions and 2 deletions
|
@ -686,8 +686,8 @@ reload_sections (GtkBuilder *builder)
|
||||||
if (!dir)
|
if (!dir)
|
||||||
{
|
{
|
||||||
g_free (dir_path);
|
g_free (dir_path);
|
||||||
return;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (name = g_dir_read_name (dir) ; name ; name = g_dir_read_name (dir))
|
for (name = g_dir_read_name (dir) ; name ; name = g_dir_read_name (dir))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue