From ad9546204c3ba4010e451a7496880f7fc6486bd4 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Fri, 10 May 2002 00:18:37 +0000 Subject: Use 16x16 KDE icon images by default. Tweek plastic boxtypes (didn't draw to the edge of the bounding box) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2205 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Group.cxx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/Fl_Group.cxx') diff --git a/src/Fl_Group.cxx b/src/Fl_Group.cxx index e65a45a9b..c09e6f0c9 100644 --- a/src/Fl_Group.cxx +++ b/src/Fl_Group.cxx @@ -1,5 +1,5 @@ // -// "$Id: Fl_Group.cxx,v 1.8.2.8.2.12 2002/04/09 17:20:23 easysw Exp $" +// "$Id: Fl_Group.cxx,v 1.8.2.8.2.13 2002/05/10 00:18:37 easysw Exp $" // // Group widget for the Fast Light Tool Kit (FLTK). // @@ -247,7 +247,9 @@ int Fl_Group::handle(int event) { if (children()) { for (int j = i;;) { - if (send(a[j], event)) return 1; + if (a[j]->takesevents() || event != FL_MOUSEWHEEL) { + if (send(a[j], event)) return 1; + } j++; if (j >= children()) j = 0; if (j == i) break; @@ -587,5 +589,5 @@ void Fl_Group::draw_outside_label(const Fl_Widget& w) const { } // -// End of "$Id: Fl_Group.cxx,v 1.8.2.8.2.12 2002/04/09 17:20:23 easysw Exp $". +// End of "$Id: Fl_Group.cxx,v 1.8.2.8.2.13 2002/05/10 00:18:37 easysw Exp $". // -- cgit v1.2.3