diff options
author | Leandro Pereira <leandro@hardinfo.org> | 2019-06-29 21:11:24 -0700 |
---|---|---|
committer | Leandro Pereira <leandro@hardinfo.org> | 2019-06-29 21:11:24 -0700 |
commit | 5abae4601012419bbccc0143db9703b63c19359b (patch) | |
tree | 3691fcfdeb2b9a849748a1d87380f1df0c53d8bc /shell | |
parent | b1eb587f596c583e6fc353f28c358e8de37a8b10 (diff) |
Fix Computer->Memory after b2b1302ba
Diffstat (limited to 'shell')
-rw-r--r-- | shell/shell.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shell/shell.c b/shell/shell.c index 5d346860..5adb32b0 100644 --- a/shell/shell.c +++ b/shell/shell.c @@ -1266,6 +1266,8 @@ static void group_handle_normal(GKeyFile* key_file, ShellModuleEntry* entry, gchar *key_copy = g_strndup(first_dollar, second_dollar - first_dollar + 1); g_hash_table_insert(update_tbl, key_copy, gtk_tree_iter_copy(&child)); + } else { + g_hash_table_insert(update_tbl, g_strdup(key), gtk_tree_iter_copy(&child)); } } |