aboutsummaryrefslogtreecommitdiffstats
path: root/shell
diff options
context:
space:
mode:
authorIain Holmes <iain@src.gnome.org>2000-09-15 08:37:49 +0800
committerIain Holmes <iain@src.gnome.org>2000-09-15 08:37:49 +0800
commitad1af78acff4090105bfe63da32fb418a4a22035 (patch)
treec751325e812ae1bd92787b01f3560268a592d03a /shell
parent22f72cc08e20c7871d93f05375fe2bafb0c1023a (diff)
downloadgsoc2013-evolution-ad1af78acff4090105bfe63da32fb418a4a22035.tar
gsoc2013-evolution-ad1af78acff4090105bfe63da32fb418a4a22035.tar.gz
gsoc2013-evolution-ad1af78acff4090105bfe63da32fb418a4a22035.tar.bz2
gsoc2013-evolution-ad1af78acff4090105bfe63da32fb418a4a22035.tar.lz
gsoc2013-evolution-ad1af78acff4090105bfe63da32fb418a4a22035.tar.xz
gsoc2013-evolution-ad1af78acff4090105bfe63da32fb418a4a22035.tar.zst
gsoc2013-evolution-ad1af78acff4090105bfe63da32fb418a4a22035.zip
Fixed bug #536 Popup folder tree button doesn't expand
svn path=/trunk/; revision=5439
Diffstat (limited to 'shell')
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/e-shell-folder-title-bar.c4
2 files changed, 6 insertions, 4 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 95e7e54dd4..362ded2c03 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -1,3 +1,9 @@
+2000-09-14 Iain Holmes <iain@helixcode.com>
+
+ * e-shell-folder-title-bar.c (e_shell_folder_title_bar_construct):
+ Remove the *kludge* so that the button width is set properly.
+ Fixes bug #XXXX
+
2000-09-14 Michael Meeks <michael@helixcode.com>
* e-shell-view-menu.c: Remove sillies in toggle paths.
diff --git a/shell/e-shell-folder-title-bar.c b/shell/e-shell-folder-title-bar.c
index c58b1b1eeb..56dbe3d9d8 100644
--- a/shell/e-shell-folder-title-bar.c
+++ b/shell/e-shell-folder-title-bar.c
@@ -404,10 +404,6 @@ e_shell_folder_title_bar_construct (EShellFolderTitleBar *folder_title_bar)
GTK_SIGNAL_FUNC (style_set_cb), NULL);
e_shell_folder_title_bar_set_title (folder_title_bar, NULL);
-
- /* KLUDGE */
- gtk_widget_size_request (priv->button, &button_requisition);
- gtk_widget_set_usize (priv->label, button_requisition.width, button_requisition.height);
}
/**