diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-05-29 00:03:14 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-05-29 00:03:14 +0800 |
commit | f85872e9213d2d8962f60b22e333a12b00f7ba27 (patch) | |
tree | cb8cfba0fca70fe781831ef4043793804c47fa84 | |
parent | 82f080eddd76da8208f0c99025055b97241c2f2c (diff) | |
download | gsoc2013-evolution-f85872e9213d2d8962f60b22e333a12b00f7ba27.tar.gz gsoc2013-evolution-f85872e9213d2d8962f60b22e333a12b00f7ba27.tar.zst gsoc2013-evolution-f85872e9213d2d8962f60b22e333a12b00f7ba27.zip |
Bug 619903 - Event editor is too small in express mode
-rw-r--r-- | calendar/gui/dialogs/comp-editor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 1c85d76e49..5440d29c43 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -1753,7 +1753,7 @@ comp_editor_init (CompEditor *editor) container = e_attachment_paned_get_content_area ( E_ATTACHMENT_PANED (priv->attachment_view)); - if (express_mode) { + if (meego_mode) { widget = gtk_scrolled_window_new (NULL, NULL); gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW (widget), @@ -1767,7 +1767,7 @@ comp_editor_init (CompEditor *editor) widget = gtk_notebook_new (); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (widget), express_mode); - if (!express_mode) + if (!meego_mode) gtk_box_pack_start ( GTK_BOX (container), widget, TRUE, TRUE, 0); else |