aboutsummaryrefslogtreecommitdiff
path: root/hardinfo2/shell.c
diff options
context:
space:
mode:
authorLeandro A. F. Pereira <leandro@hardinfo.org>2007-06-30 14:32:22 +0000
committerLeandro A. F. Pereira <leandro@hardinfo.org>2007-06-30 14:32:22 +0000
commit52b133d9d7fb007075f05b8289be517db6574fd3 (patch)
tree606b15cae99fd3d4c0ccedac664408716c973113 /hardinfo2/shell.c
parentbe25921dd3ee581b7b312baf6127f7b628ce186e (diff)
Plug memleaks. Cleanups.
Diffstat (limited to 'hardinfo2/shell.c')
-rw-r--r--hardinfo2/shell.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/hardinfo2/shell.c b/hardinfo2/shell.c
index 6d4d469d..db9f15a1 100644
--- a/hardinfo2/shell.c
+++ b/hardinfo2/shell.c
@@ -365,14 +365,14 @@ static void create_window(void)
gtk_box_pack_end(GTK_BOX(vbox), hbox, FALSE, FALSE, 3);
shell->progress = gtk_progress_bar_new();
- gtk_widget_set_size_request(shell->progress, 70, 10);
+ gtk_widget_set_size_request(shell->progress, 80, 10);
gtk_widget_hide(shell->progress);
- gtk_box_pack_end(GTK_BOX(hbox), shell->progress, FALSE, FALSE, 0);
+ gtk_box_pack_end(GTK_BOX(hbox), shell->progress, FALSE, FALSE, 5);
shell->status = gtk_label_new("");
gtk_misc_set_alignment(GTK_MISC(shell->status), 0.0, 0.5);
gtk_widget_show(shell->status);
- gtk_box_pack_start(GTK_BOX(hbox), shell->status, FALSE, FALSE, 0);
+ gtk_box_pack_start(GTK_BOX(hbox), shell->status, FALSE, FALSE, 5);
shell->hpaned = gtk_hpaned_new();
gtk_widget_show(shell->hpaned);