diff options
author | Leandro Pereira <leandro@daileon.acd.puc-campinas.edu.br> | 2008-10-30 14:50:39 -0200 |
---|---|---|
committer | Leandro Pereira <leandro@daileon.acd.puc-campinas.edu.br> | 2008-10-30 14:50:39 -0200 |
commit | 1d2c77e7e1b4c3fcbc6a36dd89fe3287c324e032 (patch) | |
tree | 58e97ec49ee2f5058a30eb8337c5cdac79eb2531 | |
parent | 7e3e159cd7b0f12e6a3a5bf675334791ee83c6c3 (diff) |
Fix typo
-rw-r--r-- | hardinfo2/computer.c | 2 | ||||
-rw-r--r-- | hardinfo2/shell.c | 8 |
2 files changed, 6 insertions, 4 deletions
diff --git a/hardinfo2/computer.c b/hardinfo2/computer.c index 74244762..f51fdb36 100644 --- a/hardinfo2/computer.c +++ b/hardinfo2/computer.c @@ -315,7 +315,7 @@ gchar *callback_fs() return g_strdup_printf("[$ShellParam$]\n" "ViewType=1\n" "ReloadInterval=5000\n" - "ColumnTitle$TextValue=Mount Point\n" + "ColumnTitle$TextValue=Device\n" "ColumnTitle$Value=Free\n" "ColumnTitle$Extra1=Total\n" "ShowColumnHeaders=true\n" diff --git a/hardinfo2/shell.c b/hardinfo2/shell.c index 99c575e9..23ba2ad7 100644 --- a/hardinfo2/shell.c +++ b/hardinfo2/shell.c @@ -1134,21 +1134,23 @@ module_selected_show_info(ShellModuleEntry * entry, gboolean reload) g_strfreev(keys); } + /* */ if (!has_shell_param) { gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(shell->info->view), FALSE); } + /* */ g_object_unref(shell->info->model); gtk_tree_view_set_model(GTK_TREE_VIEW(shell->info->view), shell->info->model); gtk_tree_view_expand_all(GTK_TREE_VIEW(shell->info->view)); + gdk_window_thaw_updates(shell->info->view->window); + shell_set_note_from_entry(entry); + if (shell->view_type == SHELL_VIEW_PROGRESS) { update_progress(); } - gdk_window_thaw_updates(shell->info->view->window); - shell_set_note_from_entry(entry); - g_strfreev(groups); g_key_file_free(key_file); g_free(key_data); |