diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-23 01:24:38 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2003-10-23 01:24:38 +0800 |
commit | ec0f879ca6e7b41d8bd850e37180c3fa92c35e88 (patch) | |
tree | 535aba1cc7d695ea9693231862d62543ed584ca3 /shell/e-shell-window.c | |
parent | 3dbe4a3ce12ddbfdb789a3a3856d830f06d4c1a9 (diff) | |
download | gsoc2013-evolution-ec0f879ca6e7b41d8bd850e37180c3fa92c35e88.tar.gz gsoc2013-evolution-ec0f879ca6e7b41d8bd850e37180c3fa92c35e88.tar.zst gsoc2013-evolution-ec0f879ca6e7b41d8bd850e37180c3fa92c35e88.zip |
(PADDING): Increase to 6 pixels.
(button_toggled_callback): Add a cast.
(e_sidebar_set_selection_widget): Handle the NULL widget case
properly.
(impl_remove): New, implementation for GtkContainer::remove.
(do_layout): Add padding between the selection_widget and the
button box.
svn path=/trunk/; revision=22989
Diffstat (limited to 'shell/e-shell-window.c')
-rw-r--r-- | shell/e-shell-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-shell-window.c b/shell/e-shell-window.c index 9cf807e858..7769577a40 100644 --- a/shell/e-shell-window.c +++ b/shell/e-shell-window.c @@ -285,7 +285,7 @@ setup_widgets (EShellWindow *window) priv->sidebar = e_sidebar_new (); g_signal_connect (priv->sidebar, "button_selected", G_CALLBACK (sidebar_button_selected_callback), window); - gtk_paned_pack1 (GTK_PANED (paned), priv->sidebar, TRUE, FALSE); + gtk_paned_pack1 (GTK_PANED (paned), priv->sidebar, FALSE, FALSE); priv->sidebar_notebook = gtk_notebook_new (); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (priv->sidebar_notebook), FALSE); @@ -293,7 +293,7 @@ setup_widgets (EShellWindow *window) priv->view_notebook = gtk_notebook_new (); gtk_notebook_set_show_tabs (GTK_NOTEBOOK (priv->view_notebook), FALSE); - gtk_paned_pack2 (GTK_PANED (paned), priv->view_notebook, FALSE, TRUE); + gtk_paned_pack2 (GTK_PANED (paned), priv->view_notebook, TRUE, TRUE); gtk_paned_set_position (GTK_PANED (paned), 200); |