summaryrefslogtreecommitdiff
path: root/src/contacts-types.vala
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@redhat.com>2011-06-23 21:06:20 +0200
committerAlexander Larsson <alexl@redhat.com>2011-06-23 21:06:20 +0200
commit3e7dc5e4ca8a0764eede1f475f277995df199e6e (patch)
treed226f321a5e4b70f418d28641beb12b9bf313e3f /src/contacts-types.vala
parent1d36ccd2759ab5a47e0c5e1335a2fea3c4ffa919 (diff)
downloadgnome-contacts-3e7dc5e4ca8a0764eede1f475f277995df199e6e.tar.gz
Document the entry sizeing
Diffstat (limited to 'src/contacts-types.vala')
-rw-r--r--src/contacts-types.vala4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/contacts-types.vala b/src/contacts-types.vala
index 55be279..b3ea5a5 100644
--- a/src/contacts-types.vala
+++ b/src/contacts-types.vala
@@ -359,7 +359,9 @@ public class Contacts.TypeCombo : Grid {
entry = new Entry ();
entry.set_halign (Align.FILL);
entry.set_hexpand (true);
- entry.width_chars = 10;
+ // Make the default entry small so we don't unnecessarily
+ // expand the labels (it'll be expanded a bit anyway)
+ entry.width_chars = 4;
this.add (entry);