From 97c408f1d26106b50f8958e29bda160572012bba Mon Sep 17 00:00:00 2001 From: Matthias Melcher Date: Wed, 20 Feb 2008 17:42:08 +0000 Subject: STR 1849: fixed messages sent to hidden windows git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@6030 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Group.cxx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src') 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; -- cgit v1.2.3