diff options
| author | monsta <[email protected]> | 2015-04-08 13:29:03 +0300 | 
|---|---|---|
| committer | monsta <[email protected]> | 2015-04-08 13:29:03 +0300 | 
| commit | 6eb2149298555a47f3cc3e31d3b4eda5b02ae925 (patch) | |
| tree | d91e8c5ccf21128d15ac5131aaebf76505b146e5 | |
| parent | 0235124b6d7a12f388910009dd505d38c07996b3 (diff) | |
| download | marco-6eb2149298555a47f3cc3e31d3b4eda5b02ae925.tar.bz2 marco-6eb2149298555a47f3cc3e31d3b4eda5b02ae925.tar.xz | |
prefs: make workspace name actually change
now workspace names actually change on-the-fly when you change them in dconf-editor.
and this works with GLib 2.43 as well.
| -rw-r--r-- | src/core/prefs.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/core/prefs.c b/src/core/prefs.c index 09431727..d5a3a15a 100644 --- a/src/core/prefs.c +++ b/src/core/prefs.c @@ -972,7 +972,7 @@ change_notify (GSettings *settings,        g_free(str);      } -  else if (g_strcmp0 (schema_name, KEY_WORKSPACE_NAME_SCHEMA)) +  else if (g_strcmp0 (schema_name, KEY_WORKSPACE_NAME_SCHEMA) == 0)      {        gchar *str;          str = g_settings_get_string (settings, key); | 
