diff options
| author | Milan Crha <mcrha@redhat.com> | 2014-03-28 00:08:58 +0800 |
|---|---|---|
| committer | Milan Crha <mcrha@redhat.com> | 2014-03-28 00:08:58 +0800 |
| commit | ed405f45a5b870b0374f8f714023e1647a1a6701 (patch) | |
| tree | 4cc01d9461558ab887764b07543a86f645b70d4e /e-util | |
| parent | d19f306eb81bf0582c84ae8c7055e39c323fae4f (diff) | |
| download | gsoc2013-evolution-ed405f45a5b870b0374f8f714023e1647a1a6701.tar gsoc2013-evolution-ed405f45a5b870b0374f8f714023e1647a1a6701.tar.gz gsoc2013-evolution-ed405f45a5b870b0374f8f714023e1647a1a6701.tar.bz2 gsoc2013-evolution-ed405f45a5b870b0374f8f714023e1647a1a6701.tar.lz gsoc2013-evolution-ed405f45a5b870b0374f8f714023e1647a1a6701.tar.xz gsoc2013-evolution-ed405f45a5b870b0374f8f714023e1647a1a6701.tar.zst gsoc2013-evolution-ed405f45a5b870b0374f8f714023e1647a1a6701.zip | |
Bug #726542 - Unpadded black border on various mail account settings pages
Diffstat (limited to 'e-util')
| -rw-r--r-- | e-util/e-config.c | 1 | ||||
| -rw-r--r-- | e-util/e-send-options.c | 1 | ||||
| -rw-r--r-- | e-util/evolution-source-viewer.c | 1 | ||||
| -rw-r--r-- | e-util/test-source-selector.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/e-util/e-config.c b/e-util/e-config.c index 5a51fff1ec..be1647ad6c 100644 --- a/e-util/e-config.c +++ b/e-util/e-config.c @@ -420,6 +420,7 @@ ec_rebuild (EConfig *config) 0, wn->context->data); } else { root = gtk_notebook_new (); + gtk_notebook_set_show_border (GTK_NOTEBOOK (root), FALSE); gtk_widget_show (root); } diff --git a/e-util/e-send-options.c b/e-util/e-send-options.c index ab6ba3da55..b95486aa91 100644 --- a/e-util/e-send-options.c +++ b/e-util/e-send-options.c @@ -516,6 +516,7 @@ setup_widgets (ESendOptionsDialog *sod, priv = sod->priv; + gtk_notebook_set_show_border (priv->notebook, FALSE); if (!priv->gopts_needed) { gtk_notebook_set_show_tabs (priv->notebook, FALSE); gtk_notebook_set_current_page (priv->notebook, 1); diff --git a/e-util/evolution-source-viewer.c b/e-util/evolution-source-viewer.c index 71f76d61e8..a268beb950 100644 --- a/e-util/evolution-source-viewer.c +++ b/e-util/evolution-source-viewer.c @@ -748,6 +748,7 @@ source_viewer_constructed (GObject *object) gtk_widget_set_margin_bottom (widget, 3); /* leave left margin at zero */ gtk_notebook_set_show_tabs (GTK_NOTEBOOK (widget), FALSE); + gtk_notebook_set_show_border (GTK_NOTEBOOK (widget), FALSE); gtk_box_pack_start (GTK_BOX (container), widget, FALSE, FALSE, 0); viewer->top_panel = widget; /* do not reference */ gtk_widget_show (widget); diff --git a/e-util/test-source-selector.c b/e-util/test-source-selector.c index 36dd65e0c0..87aac7bb3b 100644 --- a/e-util/test-source-selector.c +++ b/e-util/test-source-selector.c @@ -336,6 +336,7 @@ on_idle_create_widget (ESourceRegistry *registry) G_CALLBACK (gtk_main_quit), NULL); notebook = gtk_notebook_new (); + gtk_notebook_set_show_border (GTK_NOTEBOOK (notebook), FALSE); gtk_container_add (GTK_CONTAINER (window), GTK_WIDGET (notebook)); gtk_notebook_append_page ( |
