[log] Fix some layout issues

This commit is contained in:
Hylke Bons 2010-10-04 10:06:09 +01:00
parent f56d6f9bfa
commit 1116f3636c

View file

@ -267,7 +267,7 @@ namespace SparkleShare {
}
box.Add (date_label);
layout_vertical.PackStart (box, true, true, 0);
layout_vertical.PackStart (box, false, false, 0);
Gdk.Color color = Style.Foreground (StateType.Insensitive);
string secondary_text_color = GdkColorToHex (color);
@ -353,7 +353,7 @@ namespace SparkleShare {
Xalign = 0
};
log_entry.PackStart (change_set_info);
log_entry.PackStart (change_set_info, false, false, 0);
if (edited_files.Children.Length > 0) {
@ -420,16 +420,16 @@ namespace SparkleShare {
hbox.PackStart (avatar, false, false, 18);
VBox vbox = new VBox (false, 0);
vbox.PackStart (log_entry, true, true, 0);
vbox.PackStart (log_entry, false, false, 0);
hbox.PackStart (vbox, true, true, 0);
hbox.PackStart (new Label (""), false, false, 12);
layout_vertical.PackStart (hbox, true, true, 18);
layout_vertical.PackStart (hbox, false, false, 18);
}
layout_vertical.PackStart (new Label (""), true, true, 3);
layout_vertical.PackStart (new Label (""), false, false, 3);
}