diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Group.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Fl_Group.cxx b/src/Fl_Group.cxx index 1a90da6a2..5768bedb5 100644 --- a/src/Fl_Group.cxx +++ b/src/Fl_Group.cxx @@ -260,9 +260,7 @@ int Fl_Group::handle(int event) { if (children()) { for (int j = i;;) { - if (a[j]->takesevents() || event != FL_MOUSEWHEEL) { - if (send(a[j], event)) return 1; - } + if (a[j]->takesevents()) if (send(a[j], event)) return 1; j++; if (j >= children()) j = 0; if (j == i) break; |
