diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-20 13:16:14 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-20 13:16:14 +0800 |
commit | 85a296870654368f77fbc1105b7608a74ea64255 (patch) | |
tree | 4d2ee8027cf1dd16eb0a03bd1665e9c0976784ab /shell | |
parent | d9ed7a6a6366e5b47341c31409f4ac0f12aca690 (diff) | |
download | gsoc2013-evolution-85a296870654368f77fbc1105b7608a74ea64255.tar gsoc2013-evolution-85a296870654368f77fbc1105b7608a74ea64255.tar.gz gsoc2013-evolution-85a296870654368f77fbc1105b7608a74ea64255.tar.bz2 gsoc2013-evolution-85a296870654368f77fbc1105b7608a74ea64255.tar.lz gsoc2013-evolution-85a296870654368f77fbc1105b7608a74ea64255.tar.xz gsoc2013-evolution-85a296870654368f77fbc1105b7608a74ea64255.tar.zst gsoc2013-evolution-85a296870654368f77fbc1105b7608a74ea64255.zip |
Don't show the vbox here. (setup_widgets): Don't show the
* e-shell-view.c (setup_storage_set_subwindow): Don't show the
vbox here.
(setup_widgets): Don't show the storage_set_view_box here.
svn path=/trunk/; revision=12246
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 6 | ||||
-rw-r--r-- | shell/e-shell-view.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 17aa3249a7..cbc4edf146 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,5 +1,11 @@ 2001-08-20 Ettore Perazzoli <ettore@ximian.com> + * e-shell-view.c (setup_storage_set_subwindow): Don't show the + vbox here. + (setup_widgets): Don't show the storage_set_view_box here. + +2001-08-20 Ettore Perazzoli <ettore@ximian.com> + * evolution-test-component.c: Added display_name and description to the type. diff --git a/shell/e-shell-view.c b/shell/e-shell-view.c index 4d7b4632c7..f3af270afe 100644 --- a/shell/e-shell-view.c +++ b/shell/e-shell-view.c @@ -722,13 +722,14 @@ setup_storage_set_subwindow (EShellView *shell_view) gtk_signal_connect (GTK_OBJECT (priv->storage_set_title_bar), "button_clicked", GTK_SIGNAL_FUNC (storage_set_view_button_clicked_cb), shell_view); - gtk_widget_show (vbox); gtk_widget_show (storage_set_view); gtk_widget_show (priv->storage_set_title_bar); gtk_widget_show (scroll_frame); priv->storage_set_view_box = vbox; priv->storage_set_view = storage_set_view; + + /* Notice we don't show the vbox here yet. By default it's hidden. */ } static void @@ -938,7 +939,6 @@ setup_widgets (EShellView *shell_view) gtk_widget_show (priv->shortcut_frame); gtk_widget_show (priv->shortcut_bar); gtk_widget_show (priv->storage_set_view); - gtk_widget_show (priv->storage_set_view_box); gtk_widget_show (priv->notebook); gtk_widget_show (priv->hpaned); gtk_widget_show (priv->view_hpaned); |