projects
/
tbo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
78ba7ad
)
Uniform size, not expanded, for spin.
author
Daniel Garcia
<danigm@yaco.es>
Wed, 7 Jul 2010 08:02:53 +0000
(10:02 +0200)
committer
Daniel Garcia
<danigm@yaco.es>
Wed, 7 Jul 2010 08:02:53 +0000
(10:02 +0200)
src/tbo-ui-utils.c
patch
|
blob
|
history
diff --git
a/src/tbo-ui-utils.c
b/src/tbo-ui-utils.c
index
893c945
..
6c93549
100644
(file)
--- a/
src/tbo-ui-utils.c
+++ b/
src/tbo-ui-utils.c
@@
-15,7
+15,7
@@
add_spin_with_label (GtkWidget *container, const gchar *string, gint value)
adjustment = gtk_adjustment_new (value, 0, 10000, 1, 1, 0);
spin = gtk_spin_button_new (GTK_ADJUSTMENT (adjustment), 1, 0);
gtk_box_pack_start (GTK_BOX (hpanel), label, TRUE, TRUE, 5);
- gtk_box_pack_start (GTK_BOX (hpanel), spin,
TRUE, TRU
E, 5);
+ gtk_box_pack_start (GTK_BOX (hpanel), spin,
FALSE, FALS
E, 5);
gtk_box_pack_start (GTK_BOX (container), hpanel, FALSE, FALSE, 5);
return spin;