diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-12-09 05:16:54 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-12-09 05:16:54 +0800 |
commit | 75f8d193c4e79bda653b2d0d96856117f1d5d3d3 (patch) | |
tree | 227ab4615244cd738262c5139c86bfcb33118d57 /calendar/gui/e-timezone-entry.c | |
parent | dffbebe88bc54a5ffc4ea414a835c4a14672d87e (diff) | |
download | gsoc2013-evolution-75f8d193c4e79bda653b2d0d96856117f1d5d3d3.tar.gz gsoc2013-evolution-75f8d193c4e79bda653b2d0d96856117f1d5d3d3.tar.zst gsoc2013-evolution-75f8d193c4e79bda653b2d0d96856117f1d5d3d3.zip |
fixes the tool tip crash.
svn path=/trunk/; revision=30738
Diffstat (limited to 'calendar/gui/e-timezone-entry.c')
-rw-r--r-- | calendar/gui/e-timezone-entry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-timezone-entry.c b/calendar/gui/e-timezone-entry.c index 4004ae2cb8..56ac16901d 100644 --- a/calendar/gui/e-timezone-entry.c +++ b/calendar/gui/e-timezone-entry.c @@ -120,7 +120,7 @@ e_timezone_entry_init (ETimezoneEntry *tentry) priv->entry = gtk_entry_new (); gtk_entry_set_editable (GTK_ENTRY (priv->entry), FALSE); /*gtk_widget_set_usize (priv->date_entry, 90, 0);*/ - gtk_box_pack_start (GTK_BOX (tentry), priv->entry, TRUE, TRUE, 6); + gtk_box_pack_start (GTK_BOX (tentry), priv->entry, TRUE, TRUE, 0); gtk_widget_show (priv->entry); g_signal_connect (priv->entry, "changed", G_CALLBACK (on_entry_changed), tentry); |