changeset 57:4c80ef16430f

Make the text fields in the properties dialog expand into the box... So they will appear vertically centered next to the color wells.
author Brian Smith <brian@dbsoft.org>
date Sun, 24 Jun 2012 14:58:35 -0500
parents 62744fa81792
children 63259815cf45
files cc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/cc.c	Thu May 17 18:25:23 2012 -0500
+++ b/cc.c	Sun Jun 24 14:58:35 2012 -0500
@@ -667,7 +667,7 @@
 		dw_box_pack_start(hbox, tmp, 40, 25, FALSE, FALSE, 2);
 		tmp = dw_text_new(color_names[x], 0);
 		dw_window_set_style(tmp, DW_DT_VCENTER, DW_DT_VCENTER);
-		dw_box_pack_start(hbox, tmp, -1, -1, TRUE, FALSE, 2);
+		dw_box_pack_start(hbox, tmp, -1, -1, TRUE, TRUE, 2);
 	}
 
 	dw_signal_connect(in_properties, DW_SIGNAL_DELETE, DW_SIGNAL_FUNC(properties_delete), NULL);