diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-01 12:46:32 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-01 12:46:32 +0800 |
commit | 3eede8f869a24e9faff30eb2b8950a4023d50047 (patch) | |
tree | 9e5c22ed7ce71fcc555402b5cfde9da2ec378aed /shell/e-shell-view.c | |
parent | 2f59d465951a90846c35bbdc66ff89ee1c738e35 (diff) | |
download | gsoc2013-evolution-3eede8f869a24e9faff30eb2b8950a4023d50047.tar gsoc2013-evolution-3eede8f869a24e9faff30eb2b8950a4023d50047.tar.gz gsoc2013-evolution-3eede8f869a24e9faff30eb2b8950a4023d50047.tar.bz2 gsoc2013-evolution-3eede8f869a24e9faff30eb2b8950a4023d50047.tar.lz gsoc2013-evolution-3eede8f869a24e9faff30eb2b8950a4023d50047.tar.xz gsoc2013-evolution-3eede8f869a24e9faff30eb2b8950a4023d50047.tar.zst gsoc2013-evolution-3eede8f869a24e9faff30eb2b8950a4023d50047.zip |
Reduce the size of the window by a bit and add some padding to make
the view look nicer.
svn path=/trunk/; revision=3327
Diffstat (limited to 'shell/e-shell-view.c')
-rw-r--r-- | shell/e-shell-view.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index cfd5c2d4e7..0a1f35d07f 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -98,8 +98,8 @@ static guint signals[LAST_SIGNAL] = { 0 }; #define DEFAULT_SHORTCUT_BAR_WIDTH 100 #define DEFAULT_TREE_WIDTH 130 -#define DEFAULT_WIDTH 600 -#define DEFAULT_HEIGHT 600 +#define DEFAULT_WIDTH 700 +#define DEFAULT_HEIGHT 550 /* Utility functions. */ @@ -256,6 +256,7 @@ setup_widgets (EShellView *shell_view) /* Put things into a paned and the paned into the GnomeApp. */ priv->view_vbox = gtk_vbox_new (FALSE, 0); + gtk_container_set_border_width (GTK_CONTAINER (priv->view_vbox), 2); priv->view_title_bar = e_shell_folder_title_bar_new (); |