# HG changeset patch # User jcid # Date 1225398406 -3600 # Node ID 32cbd6607669d9a97df85a2610404e1f9485f62f # Parent 7330f61dce7d9123debaaba2b7b26e7f30650b3d - Set the ScrollGroup as the resizable widget in downloads dpi. diff -r 7330f61dce7d -r 32cbd6607669 ChangeLog --- a/ChangeLog Thu Oct 30 21:02:35 2008 +0100 +++ b/ChangeLog Thu Oct 30 21:26:46 2008 +0100 @@ -16,6 +16,7 @@ Patches: place (AKA corvid) +- Switched SSL-enabled to configure.in (./configure --enable-ssl). - Standardised the installation of dpid/dpidrc with auto* tools. + - Set the ScrollGroup as the resizable widget in downloads dpi. Patches: Jeremy Henty +- Allowed compilation with older machines by removing a few C99isms. - Added use of inttypes.h when stdint.h isn't found. diff -r 7330f61dce7d -r 32cbd6607669 dpi/downloads.cc --- a/dpi/downloads.cc Thu Oct 30 21:02:35 2008 +0100 +++ b/dpi/downloads.cc Thu Oct 30 21:26:46 2008 +0100 @@ -1027,10 +1027,10 @@ { DLItem *dl_item = mDList->get(n_item); - // Remove the widget from the scroll group + // Remove the widget from the packed group mPG->remove(dl_item->get_widget()); - // Resize the scroll group - mPG->resize(mWin->w(), 1); + // WORKAROUND: without this call FLTK2 doesn't clear the background. + mScroll->redraw(); mDList->del(n_item); delete(dl_item); @@ -1093,7 +1093,7 @@ mScroll->end(); mScroll->type(ScrollGroup::VERTICAL); mWin->end(); - mWin->resizable(mPG); + mWin->resizable(mScroll); mWin->callback(dlwin_esc_cb, NULL); mWin->show();