diff options
author | Hans Petter Jansson <hpj@ximian.com> | 2003-02-02 16:07:39 +0800 |
---|---|---|
committer | Hans Petter <hansp@src.gnome.org> | 2003-02-02 16:07:39 +0800 |
commit | c366eaafc3e9e3aa55d3b3b793964d1b9570a5db (patch) | |
tree | ad4eb9a4ce3ff3fbb6c73ba2c9b9c01b71c8b220 /calendar/gui/dialogs | |
parent | 9c2e592707b4290e72868136163f427da640b684 (diff) | |
download | gsoc2013-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')
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 4 | ||||
-rw-r--r-- | calendar/gui/dialogs/recurrence-page.c | 1 |
2 files changed, 5 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"); diff --git a/calendar/gui/dialogs/recurrence-page.c b/calendar/gui/dialogs/recurrence-page.c index 79c0224509..162f7a9737 100644 --- a/calendar/gui/dialogs/recurrence-page.c +++ b/calendar/gui/dialogs/recurrence-page.c @@ -2033,6 +2033,7 @@ get_widgets (RecurrencePage *rpage) priv->custom_warning_bin = GW ("custom-warning-bin"); priv->exception_date = GW ("exception-date"); + gtk_widget_show (priv->exception_date); priv->exception_list = GW ("exception-list"); priv->exception_add = GW ("exception-add"); priv->exception_modify = GW ("exception-modify"); |