summaryrefslogtreecommitdiff
path: root/src/Fl_Group.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-02-13 03:55:10 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-02-13 03:55:10 +0000
commitab0949c1f7bbe9c793cdfd3d71c09d6576581a0b (patch)
treed51708d078731d866dcc58b414a7fd7e64b6975b /src/Fl_Group.cxx
parentaf16ba7e8bedeb1caa9e15739cc11dfd3c85d49a (diff)
File chooser fix from Kurt Konolige.
Mousewheel event propagation fix for Fl_Group. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1958 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Group.cxx')
-rw-r--r--src/Fl_Group.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/Fl_Group.cxx b/src/Fl_Group.cxx
index ce5bc1ca2..c4846f573 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.9 2002/01/01 15:11:30 easysw Exp $"
+// "$Id: Fl_Group.cxx,v 1.8.2.8.2.10 2002/02/13 03:55:10 easysw Exp $"
//
// Group widget for the Fast Light Tool Kit (FLTK).
//
@@ -212,7 +212,8 @@ int Fl_Group::handle(int event) {
if (children()) {
for (int j = i;;) {
- if (send(child(j), event)) return 1;
+ if (child(j)->takesevents())
+ if (send(child(j), event)) return 1;
j++;
if (j >= children()) j = 0;
if (j == i) break;
@@ -552,5 +553,5 @@ void Fl_Group::draw_outside_label(const Fl_Widget& w) const {
}
//
-// End of "$Id: Fl_Group.cxx,v 1.8.2.8.2.9 2002/01/01 15:11:30 easysw Exp $".
+// End of "$Id: Fl_Group.cxx,v 1.8.2.8.2.10 2002/02/13 03:55:10 easysw Exp $".
//