summaryrefslogtreecommitdiff
path: root/src/Fl_Group.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-05-10 00:18:37 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-05-10 00:18:37 +0000
commitad9546204c3ba4010e451a7496880f7fc6486bd4 (patch)
tree147567d37a465053152e6d1f95d34a49203920d2 /src/Fl_Group.cxx
parentc56bb65a9752613a564fac18f0086053edde1ece (diff)
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
Diffstat (limited to 'src/Fl_Group.cxx')
-rw-r--r--src/Fl_Group.cxx8
1 files changed, 5 insertions, 3 deletions
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 $".
//