changeset 12102:8df87db79bad

[gaim-migrate @ 14399] I think this is better, don't you? committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Tue, 15 Nov 2005 04:45:21 +0000
parents 8c6ea55c84a4
children f746fb528dc9
files src/gtkstatusbox.c
diffstat 1 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkstatusbox.c	Tue Nov 15 04:37:23 2005 +0000
+++ b/src/gtkstatusbox.c	Tue Nov 15 04:45:21 2005 +0000
@@ -607,13 +607,16 @@
 	box_alc.height = MAX(1, ((allocation->height) - (req.height) - (12)));
 	box_alc.y = box_alc.y + req.height + 9;
 
-	box_alc.width -= 6; box_alc.x += 3;
+	box_alc.width -= 6;
+	box_alc.x += 3;
 
 
 	gtk_widget_size_allocate((GTK_GAIM_STATUS_BOX(widget))->vbox, &box_alc);
 
 	parent_alc.height = MAX(1,req.height);
-	parent_alc.width -= 6; parent_alc.x += 3; parent_alc.y += 3;
+	parent_alc.width -= 6;
+	parent_alc.x += 3;
+	parent_alc.y += 3;
 
 	combo_box_size_allocate(widget, &parent_alc);
 	widget->allocation = *allocation;