diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-05-28 01:55:34 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2007-05-28 01:55:34 +0800 |
commit | d303bba5106f0019ee887384cd709cbd0e5be922 (patch) | |
tree | bbd28f821bdb6f76e01424e5b7b0649614f518a3 /calendar/gui/dialogs/task-editor.c | |
parent | ee84f61d7ae5ca865c8de37b87473c6232a05333 (diff) | |
download | gsoc2013-evolution-d303bba5106f0019ee887384cd709cbd0e5be922.tar gsoc2013-evolution-d303bba5106f0019ee887384cd709cbd0e5be922.tar.gz gsoc2013-evolution-d303bba5106f0019ee887384cd709cbd0e5be922.tar.bz2 gsoc2013-evolution-d303bba5106f0019ee887384cd709cbd0e5be922.tar.lz gsoc2013-evolution-d303bba5106f0019ee887384cd709cbd0e5be922.tar.xz gsoc2013-evolution-d303bba5106f0019ee887384cd709cbd0e5be922.tar.zst gsoc2013-evolution-d303bba5106f0019ee887384cd709cbd0e5be922.zip |
** Fix for bug #351729 from Milan Crha
svn path=/trunk/; revision=33584
Diffstat (limited to 'calendar/gui/dialogs/task-editor.c')
-rw-r--r-- | calendar/gui/dialogs/task-editor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c index ef614ef1c0..f205a78d6f 100644 --- a/calendar/gui/dialogs/task-editor.c +++ b/calendar/gui/dialogs/task-editor.c @@ -436,8 +436,8 @@ task_editor_construct (TaskEditor *te, ECal *client) g_object_ref_sink (priv->task_details_page); gtk_container_add ((GtkContainer *) GTK_DIALOG(priv->task_details_window)->vbox, comp_editor_page_get_widget ((CompEditorPage *)priv->task_details_page)); - gtk_widget_show_all (priv->task_details_window); - gtk_widget_hide (priv->task_details_window); + gtk_widget_show_all (gtk_bin_get_child (GTK_BIN (priv->task_details_window) ) ); + /* gtk_widget_hide (priv->task_details_window); */ comp_editor_append_page (editor, COMP_EDITOR_PAGE (priv->task_details_page), NULL, FALSE); if (!e_cal_is_read_only (client, &read_only, NULL)) |