aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/event-page.c
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@ximian.com>2003-02-02 16:07:39 +0800
committerHans Petter <hansp@src.gnome.org>2003-02-02 16:07:39 +0800
commitc366eaafc3e9e3aa55d3b3b793964d1b9570a5db (patch)
treead4eb9a4ce3ff3fbb6c73ba2c9b9c01b71c8b220 /calendar/gui/dialogs/event-page.c
parent9c2e592707b4290e72868136163f427da640b684 (diff)
downloadgsoc2013-evolution-c366eaafc3e9e3aa55d3b3b793964d1b9570a5db.tar
gsoc2013-evolution-c366eaafc3e9e3aa55d3b3b793964d1b9570a5db.tar.gz
gsoc2013-evolution-c366eaafc3e9e3aa55d3b3b793964d1b9570a5db.tar.bz2
gsoc2013-evolution-c366eaafc3e9e3aa55d3b3b793964d1b9570a5db.tar.lz
gsoc2013-evolution-c366eaafc3e9e3aa55d3b3b793964d1b9570a5db.tar.xz
gsoc2013-evolution-c366eaafc3e9e3aa55d3b3b793964d1b9570a5db.tar.zst
gsoc2013-evolution-c366eaafc3e9e3aa55d3b3b793964d1b9570a5db.zip
Skip setting the "font_gdk" arg for now.
2003-02-02 Hans Petter Jansson <hpj@ximian.com> * gui/e-day-view.c (e_day_view_set_event_font_cb): Skip setting the "font_gdk" arg for now. (e_day_view_update_main_canvas_drag): Ditto. * gui/e-week-view.c (e_week_view_style_set): Ditto. * gui/weekday-picker.c (configure_items): Ditto. * gui/dialogs/event-page.c (get_widgets): Show custom widgets manually, since the visibility specified in the Glade XML appears to not have any effect. * gui/dialogs/recurrence-page.c (get_widgets): Ditto. svn path=/trunk/; revision=19706
Diffstat (limited to 'calendar/gui/dialogs/event-page.c')
-rw-r--r--calendar/gui/dialogs/event-page.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c
index 9c5cc514ad..dc5a6ba0a2 100644
--- a/calendar/gui/dialogs/event-page.c
+++ b/calendar/gui/dialogs/event-page.c
@@ -767,8 +767,12 @@ get_widgets (EventPage *epage)
priv->summary = GW ("general-summary");
priv->location = GW ("location");
+ /* Glade's visibility flag doesn't seem to work for custom widgets */
priv->start_time = GW ("start-time");
+ gtk_widget_show (priv->start_time);
priv->end_time = GW ("end-time");
+ gtk_widget_show (priv->end_time);
+
priv->start_timezone = GW ("start-timezone");
priv->end_timezone = GW ("end-timezone");
priv->all_day_event = GW ("all-day-event");