[Xfce4-commits] <postler:master> Increment padding on right side of composer entries
Christian Dywan
noreply at xfce.org
Sun Jan 30 09:36:01 CET 2011
Updating branch refs/heads/master
to 6bebb429cba1c2f328bbd3e5ca58565bdc39c16d (commit)
from 9a9cd9f170d611f143f38da5332e0c6b9cf95e51 (commit)
commit 6bebb429cba1c2f328bbd3e5ca58565bdc39c16d
Author: Sergio Spinatelli <spinatelli.sergio at gmail.com>
Date: Sun Jan 30 09:33:50 2011 +0100
Increment padding on right side of composer entries
Fixes: https://bugs.launchpad.net/postler/+bug/709570
postler/postler-composer.vala | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/postler/postler-composer.vala b/postler/postler-composer.vala
index e1279eb..8bf1709 100644
--- a/postler/postler-composer.vala
+++ b/postler/postler-composer.vala
@@ -502,7 +502,7 @@ public class Postler.Composer : Gtk.Window {
box.pack_start (label_from, false, false, 4);
sizegroup.add_widget (label_from);
combo_from = new Gtk.ComboBox.text ();
- box.pack_start (combo_from, true, true, 4);
+ box.pack_start (combo_from, true, true, 12);
box = new Gtk.HBox (false, 0);
shelf.pack_start (box, false, false, 4);
var label_and_arrow = new Gtk.HBox (false, 0);
@@ -528,7 +528,7 @@ public class Postler.Composer : Gtk.Window {
label_and_arrow.pack_start (label, false, false, 4);
sizegroup.add_widget (label_and_arrow);
entry_to = entry_with_address_completion ();
- box.pack_start (entry_to, true, true, 4);
+ box.pack_start (entry_to, true, true, 12);
box = new Gtk.HBox (false, 0);
shelf.pack_start (box, false, false, 4);
label = new Gtk.Label.with_mnemonic (_("_Copy:"));
@@ -536,7 +536,7 @@ public class Postler.Composer : Gtk.Window {
box.pack_start (label, false, false, 4);
sizegroup.add_widget (label);
entry_copy = entry_with_address_completion ();
- box.pack_start (entry_copy, true, true, 4);
+ box.pack_start (entry_copy, true, true, 12);
label.show ();
entry_copy.show ();
box.set_no_show_all (true);
@@ -547,7 +547,7 @@ public class Postler.Composer : Gtk.Window {
box.pack_start (label, false, false, 4);
sizegroup.add_widget (label);
entry_subject = new Gtk.Entry ();
- box.pack_start (entry_subject, true, true, 4);
+ box.pack_start (entry_subject, true, true, 12);
content = new Postler.Content ();
var scrolled = new Postler.ScrolledWindow (content);
scrolled.shadow_type = Gtk.ShadowType.IN;
More information about the Xfce4-commits
mailing list