aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-timezone-entry.c
diff options
context:
space:
mode:
authorSrinivasa Ragavan <sragavan@src.gnome.org>2006-07-14 14:36:34 +0800
committerSrinivasa Ragavan <sragavan@src.gnome.org>2006-07-14 14:36:34 +0800
commit48972c2dbea38548671277f5efd60dcb2e4f3176 (patch)
tree858f50b70f80b01cceb3e58f7c5775b9934abc8b /calendar/gui/e-timezone-entry.c
parent8c444c6c0f11a438ae5e1c09061014df86b2ad84 (diff)
downloadgsoc2013-evolution-48972c2dbea38548671277f5efd60dcb2e4f3176.tar
gsoc2013-evolution-48972c2dbea38548671277f5efd60dcb2e4f3176.tar.gz
gsoc2013-evolution-48972c2dbea38548671277f5efd60dcb2e4f3176.tar.bz2
gsoc2013-evolution-48972c2dbea38548671277f5efd60dcb2e4f3176.tar.lz
gsoc2013-evolution-48972c2dbea38548671277f5efd60dcb2e4f3176.tar.xz
gsoc2013-evolution-48972c2dbea38548671277f5efd60dcb2e4f3176.tar.zst
gsoc2013-evolution-48972c2dbea38548671277f5efd60dcb2e4f3176.zip
Fix for bug #330633
svn path=/trunk/; revision=32312
Diffstat (limited to 'calendar/gui/e-timezone-entry.c')
-rw-r--r--calendar/gui/e-timezone-entry.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/calendar/gui/e-timezone-entry.c b/calendar/gui/e-timezone-entry.c
index e708a03618..04ee657f92 100644
--- a/calendar/gui/e-timezone-entry.c
+++ b/calendar/gui/e-timezone-entry.c
@@ -329,10 +329,10 @@ e_timezone_entry_set_entry (ETimezoneEntry *tentry)
gtk_entry_set_text (GTK_ENTRY (priv->entry), name_buffer);
- if (!priv->default_zone || (priv->zone != priv->default_zone))
- gtk_widget_show (priv->entry);
- else
- gtk_widget_hide (priv->entry);
+ /* do we need to hide the timezone entry at all? i know this overrules the previous case of hiding the timezone
+ * entry field when we select the default timezone
+ */
+ gtk_widget_show (priv->entry);
g_free (name_buffer);
}