aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2011-02-03 17:45:03 +0800
committerRodrigo Moya <rodrigo@gnome-db.org>2011-06-30 00:41:31 +0800
commit28d1b270ab69a0bdd4a555d30c3f76406f47e15a (patch)
tree49f2d56b56a9e1789d6791ec63a1fe967861fbc6 /mail
parentf099f679dcdd568cb5b7c8838f5f114ed19bce07 (diff)
downloadgsoc2013-evolution-28d1b270ab69a0bdd4a555d30c3f76406f47e15a.tar
gsoc2013-evolution-28d1b270ab69a0bdd4a555d30c3f76406f47e15a.tar.gz
gsoc2013-evolution-28d1b270ab69a0bdd4a555d30c3f76406f47e15a.tar.bz2
gsoc2013-evolution-28d1b270ab69a0bdd4a555d30c3f76406f47e15a.tar.lz
gsoc2013-evolution-28d1b270ab69a0bdd4a555d30c3f76406f47e15a.tar.xz
gsoc2013-evolution-28d1b270ab69a0bdd4a555d30c3f76406f47e15a.tar.zst
gsoc2013-evolution-28d1b270ab69a0bdd4a555d30c3f76406f47e15a.zip
Bug #641011 - Ugly appointment editing windows
Diffstat (limited to 'mail')
-rw-r--r--mail/em-account-editor.c5
-rw-r--r--mail/em-subscription-editor.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c
index 54c298a3e9..0a74e6b3b8 100644
--- a/mail/em-account-editor.c
+++ b/mail/em-account-editor.c
@@ -2214,6 +2214,7 @@ emae_identity_page (EConfig *ec, EConfigItem *item, GtkWidget *parent, GtkWidget
w = page;
} else {
gtk_notebook_append_page ((GtkNotebook *)parent, w, gtk_label_new (_("Identity")));
+ gtk_container_child_set (GTK_CONTAINER (parent), w, "tab-fill", FALSE, "tab-expand", FALSE, NULL);
}
emae_queue_widgets (
@@ -2258,6 +2259,7 @@ emae_receive_page (EConfig *ec, EConfigItem *item, GtkWidget *parent, GtkWidget
w = page;
} else {
gtk_notebook_append_page ((GtkNotebook *)parent, w, gtk_label_new (_("Receiving Email")));
+ gtk_container_child_set (GTK_CONTAINER (parent), w, "tab-fill", FALSE, "tab-expand", FALSE, NULL);
}
emae_queue_widgets (
@@ -2757,6 +2759,7 @@ emae_send_page (EConfig *ec, EConfigItem *item, GtkWidget *parent, GtkWidget *ol
w = page;
} else {
gtk_notebook_append_page ((GtkNotebook *)parent, w, gtk_label_new (_("Sending Email")));
+ gtk_container_child_set (GTK_CONTAINER (parent), w, "tab-fill", FALSE, "tab-expand", FALSE, NULL);
}
emae_queue_widgets (
@@ -3042,6 +3045,7 @@ emae_defaults_page (EConfig *ec, EConfigItem *item, GtkWidget *parent, GtkWidget
gtk_widget_show (widget);
}else {
gtk_notebook_append_page ((GtkNotebook *)parent, widget, gtk_label_new (_("Defaults")));
+ gtk_container_child_set (GTK_CONTAINER (parent), widget, "tab-fill", FALSE, "tab-expand", FALSE, NULL);
}
emae_queue_widgets (
@@ -3170,6 +3174,7 @@ emae_security_page (EConfig *ec, EConfigItem *item, GtkWidget *parent, GtkWidget
w = e_builder_get_widget (builder, item->label);
gtk_notebook_append_page ((GtkNotebook *)parent, w, gtk_label_new (_("Security")));
+ gtk_container_child_set (GTK_CONTAINER (parent), w, "tab-fill", FALSE, "tab-expand", FALSE, NULL);
g_object_unref (builder);
diff --git a/mail/em-subscription-editor.c b/mail/em-subscription-editor.c
index f84486a4dc..baaf3eac53 100644
--- a/mail/em-subscription-editor.c
+++ b/mail/em-subscription-editor.c
@@ -842,6 +842,7 @@ subscription_editor_add_account (EMSubscriptionEditor *editor,
gtk_scrolled_window_set_shadow_type (
GTK_SCROLLED_WINDOW (widget), GTK_SHADOW_IN);
gtk_notebook_append_page (GTK_NOTEBOOK (container), widget, NULL);
+ gtk_container_child_set (GTK_CONTAINER (container), widget, "tab-fill", FALSE, "tab-expand", FALSE, NULL);
gtk_widget_show (widget);
container = widget;