diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2009-07-09 11:54:10 -0300 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2009-07-09 11:54:10 -0300 |
commit | 4fe474aaddfa1621a8e8afbd22a1ffc4aad70bba (patch) | |
tree | 8baa3b668be153c756dcfe0895046b2e32c3e478 /hardinfo2/shell.c | |
parent | 827dab254c023fffa47b5567fc5fff7cf8bde705 (diff) |
Reorder status messages
Diffstat (limited to 'hardinfo2/shell.c')
-rw-r--r-- | hardinfo2/shell.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hardinfo2/shell.c b/hardinfo2/shell.c index c8ac6e88..58c05df0 100644 --- a/hardinfo2/shell.c +++ b/hardinfo2/shell.c @@ -1460,15 +1460,15 @@ static void module_selected(gpointer data) RANGE_SET_VALUE(moreinfo, vscrollbar, 0.0); RANGE_SET_VALUE(moreinfo, hscrollbar, 0.0); - shell_status_update("Done."); - shell_status_set_enabled(FALSE); - title = g_strdup_printf("%s - %s", shell->selected_module_name, entry->name); shell_set_title(shell, title); g_free(title); shell_action_set_enabled("RefreshAction", TRUE); shell_action_set_enabled("CopyAction", TRUE); + + shell_status_update("Done."); + shell_status_set_enabled(FALSE); } else { shell_set_title(shell, NULL); shell_action_set_enabled("RefreshAction", FALSE); |