diff options
-rw-r--r-- | libindicator/indicator-desktop-shortcuts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libindicator/indicator-desktop-shortcuts.c b/libindicator/indicator-desktop-shortcuts.c index 22aed73..e1670e3 100644 --- a/libindicator/indicator-desktop-shortcuts.c +++ b/libindicator/indicator-desktop-shortcuts.c @@ -244,12 +244,12 @@ parse_keyfile (IndicatorDesktopShortcuts * ids) if (!should_show(priv->keyfile, G_KEY_FILE_DESKTOP_GROUP, priv->identity)) { g_free(groupname); - break; + continue; } if (!should_show(priv->keyfile, groupname, priv->identity)) { g_free(groupname); - break; + continue; } gchar * nickalloc = g_strdup(nicks[i]); |