diff options
-rw-r--r-- | mate-panel/panel-profile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-panel/panel-profile.c b/mate-panel/panel-profile.c index b976306e..1d8cd349 100644 --- a/mate-panel/panel-profile.c +++ b/mate-panel/panel-profile.c @@ -1476,7 +1476,7 @@ panel_profile_toplevel_id_list_notify (GSettings *settings, toplevel_ids = mate_gsettings_strv_to_gslist ((const gchar **) toplevel_ids_strv); toplevel_ids = panel_g_slist_make_unique (toplevel_ids, (GCompareFunc) g_strcmp0, - FALSE); + TRUE); g_strfreev (toplevel_ids_strv); existing_toplevels = NULL; @@ -1520,7 +1520,7 @@ panel_profile_object_id_list_update (gchar **objects) object_ids = mate_gsettings_strv_to_gslist ((const gchar **) objects); object_ids = panel_g_slist_make_unique (object_ids, (GCompareFunc) g_strcmp0, - FALSE); + TRUE); existing_applets = mate_panel_applet_list_applets (); |