diff options
Diffstat (limited to 'hardinfo2/shell.c')
-rw-r--r-- | hardinfo2/shell.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hardinfo2/shell.c b/hardinfo2/shell.c index ed73cfa7..90e5722f 100644 --- a/hardinfo2/shell.c +++ b/hardinfo2/shell.c @@ -734,6 +734,10 @@ group_handle_normal(GKeyFile * key_file, ShellModuleEntry * entry, GtkTreeIter child; value = g_key_file_get_value(key_file, group, key, NULL); + if (g_str_equal(value, "...") && entry->fieldfunc) { + g_free(value); + value = entry->fieldfunc(key); + } if (g_utf8_validate(key, -1, NULL) && g_utf8_validate(value, -1, NULL)) { gtk_tree_store_append(store, &child, &parent); |