diff options
author | Leandro Pereira <leandro@hardinfo.org> | 2019-07-09 08:43:10 -0700 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2019-07-11 20:21:46 -0700 |
commit | 46dd250cc43de4da9e450e30a8aeddc3df6f9777 (patch) | |
tree | 70e4cc31f107c76656681f9b45854c3d9ab4b773 /shell | |
parent | 1eda8e66877dc3119c61fd48bb701594f6412195 (diff) |
Ensure UpdateInterval $ShellParam$ have a dollar sign
Diffstat (limited to 'shell')
-rw-r--r-- | shell/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/shell.c b/shell/shell.c index 6f9189c3..a7bf51c4 100644 --- a/shell/shell.c +++ b/shell/shell.c @@ -1119,7 +1119,7 @@ static void group_handle_special(GKeyFile *key_file, for (i = 0; keys[i]; i++) { gchar *key = keys[i]; - if (g_str_has_prefix(key, "UpdateInterval")) { + if (g_str_has_prefix(key, "UpdateInterval$")) { ShellFieldUpdate *fu = g_new0(ShellFieldUpdate, 1); ShellFieldUpdateSource *sfutbl; gint ms; |