diff options
author | Stefano Karapetsas <[email protected]> | 2014-05-12 22:10:33 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-05-12 22:10:33 +0200 |
commit | 472ccc0025494452e705ac28dc82fe5abd431de8 (patch) | |
tree | 617a73a26b18230fbb5eed4195cec63d2860b944 | |
parent | 4beaf86fa92af12f7f47fb25263c4cb5ef221836 (diff) | |
download | mate-panel-472ccc0025494452e705ac28dc82fe5abd431de8.tar.bz2 mate-panel-472ccc0025494452e705ac28dc82fe5abd431de8.tar.xz |
Use better dconf path for added applets
-rw-r--r-- | mate-panel/panel-profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mate-panel/panel-profile.c b/mate-panel/panel-profile.c index 3f41207e..9d3b740d 100644 --- a/mate-panel/panel-profile.c +++ b/mate-panel/panel-profile.c @@ -150,7 +150,7 @@ panel_profile_find_new_id (PanelGSettingsKeyType type) existing_ids = mate_dconf_list_subdirs (dir, TRUE); for (i = 0; !retval; i++) { - retval = g_strdup_printf ("%s_%d", prefix, i); + retval = g_strdup_printf ("%s-%d", prefix, i); for (j = 0; existing_ids[j] != NULL; j++) { if (g_strcmp0 (existing_ids[j], retval) == 0) { |