diff options
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/folder-browser.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index f82e85b505..b94ace7e04 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2000-09-05 Dan Winship <danw@helixcode.com> + + * folder-browser.c (fb_resize_cb): Remove the "+ 90" here since it + seems to break things for me, and it's not commented anyway and + there's no excuse for adding 90 to a number with no explanation. + 2000-09-05 Peter Williams <peterw@helixcode.com> * folder-browser.c (folder_browser_destroy): Don't free the shell; diff --git a/mail/folder-browser.c b/mail/folder-browser.c index 4c91c66dff..cbd74e002a 100644 --- a/mail/folder-browser.c +++ b/mail/folder-browser.c @@ -476,5 +476,5 @@ E_MAKE_TYPE (folder_browser, "FolderBrowser", FolderBrowser, folder_browser_clas static void fb_resize_cb (GtkWidget *w, GtkAllocation *a) { - mail_config_set_paned_size (a->height + 90); + mail_config_set_paned_size (a->height); } |