diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-14 06:30:12 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-14 06:30:12 +0800 |
commit | 778f9780befd1f8f5514c64001c88d5b2e3292ba (patch) | |
tree | 0c303bb592e2af23dbfa33d0ade169b65b6f9acb | |
parent | f4132b59465aed487ec9dad28a77c6c6f8f24ac8 (diff) | |
download | gsoc2013-evolution-778f9780befd1f8f5514c64001c88d5b2e3292ba.tar gsoc2013-evolution-778f9780befd1f8f5514c64001c88d5b2e3292ba.tar.gz gsoc2013-evolution-778f9780befd1f8f5514c64001c88d5b2e3292ba.tar.bz2 gsoc2013-evolution-778f9780befd1f8f5514c64001c88d5b2e3292ba.tar.lz gsoc2013-evolution-778f9780befd1f8f5514c64001c88d5b2e3292ba.tar.xz gsoc2013-evolution-778f9780befd1f8f5514c64001c88d5b2e3292ba.tar.zst gsoc2013-evolution-778f9780befd1f8f5514c64001c88d5b2e3292ba.zip |
Add some little padding to the title bar so it looks nicer.
* e-shell-view.c (setup_widgets): Add some little padding to the
title bar so it looks nicer.
svn path=/trunk/; revision=11970
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-shell-view.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 7fba31983d..7430442383 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,10 @@ 2001-08-13 Ettore Perazzoli <ettore@ximian.com> + * e-shell-view.c (setup_widgets): Add some little padding to the + title bar so it looks nicer. + +2001-08-13 Ettore Perazzoli <ettore@ximian.com> + * e-gray-bar.c (impl_style_set): Removed. (class_init): Don't override that method anymore. (e_gray_bar_new): Call `endarken_style()' here instead. diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 4180c3939e..d1d9129446 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -847,7 +847,7 @@ setup_widgets (EShellView *shell_view) gray_bar = e_gray_bar_new (); gtk_container_add (GTK_CONTAINER (gray_bar), priv->folder_title_bar); - gtk_box_pack_start (GTK_BOX (priv->view_vbox), gray_bar, FALSE, FALSE, 0); + gtk_box_pack_start (GTK_BOX (priv->view_vbox), gray_bar, FALSE, FALSE, 2); gtk_box_pack_start (GTK_BOX (priv->view_vbox), priv->view_hpaned, TRUE, TRUE, 0); |