diff options
author | Milan Crha <mcrha@redhat.com> | 2011-02-03 17:45:03 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-02-03 17:45:03 +0800 |
commit | 0478e01708ab2460901f7a2fb8cae749a4e85c45 (patch) | |
tree | 7767de9296894aeab524ea78392c35ac1a7dfdf6 /widgets | |
parent | 93a51af22567bdddf3978716791f0be2e1dd2656 (diff) | |
download | gsoc2013-evolution-0478e01708ab2460901f7a2fb8cae749a4e85c45.tar.gz gsoc2013-evolution-0478e01708ab2460901f7a2fb8cae749a4e85c45.tar.zst gsoc2013-evolution-0478e01708ab2460901f7a2fb8cae749a4e85c45.zip |
Bug #641011 - Ugly appointment editing windows
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-preferences-window.c | 1 | ||||
-rw-r--r-- | widgets/misc/e-send-options.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/widgets/misc/e-preferences-window.c b/widgets/misc/e-preferences-window.c index 023c3e058f..48b1d3e92b 100644 --- a/widgets/misc/e-preferences-window.c +++ b/widgets/misc/e-preferences-window.c @@ -434,6 +434,7 @@ e_preferences_window_add_page (EPreferencesWindow *window, gtk_widget_show (GTK_WIDGET (align)); g_object_set_data (G_OBJECT (align), "create_fn", create_fn); gtk_notebook_append_page (notebook, align, NULL); + gtk_container_child_set (GTK_CONTAINER (notebook), align, "tab-fill", FALSE, "tab-expand", FALSE, NULL); /* Force GtkIconView to recalculate the text wrap width, * otherwise we get a really narrow icon list on the left diff --git a/widgets/misc/e-send-options.c b/widgets/misc/e-send-options.c index 48eda2dced..f42830b258 100644 --- a/widgets/misc/e-send-options.c +++ b/widgets/misc/e-send-options.c @@ -499,10 +499,12 @@ setup_widgets (ESendOptionsDialog *sod, Item_type type) GtkWidget *widget = gtk_label_new (_("Calendar")); gtk_label_set_text (GTK_LABEL (priv->sopts_label), _("Mail")); gtk_notebook_append_page (priv->notebook, priv->status, widget); + gtk_container_child_set (GTK_CONTAINER (priv->notebook), priv->status, "tab-fill", FALSE, "tab-expand", FALSE, NULL); gtk_widget_show (widget); widget = gtk_label_new (_("Task")); gtk_widget_show (widget); gtk_notebook_append_page (priv->notebook, priv->status,widget); + gtk_container_child_set (GTK_CONTAINER (priv->notebook), priv->status, "tab-fill", FALSE, "tab-expand", FALSE, NULL); gtk_notebook_set_show_tabs (priv->notebook, TRUE); } |