Author: matt
Date: 2008-02-20 09:42:08 -0800 (Wed, 20 Feb 2008)
New Revision: 6030
Log:
STR 1849: fixed messages sent to hidden windows

Modified:
   branches/branch-1.1/CHANGES
   branches/branch-1.1/src/Fl_Group.cxx

Modified: branches/branch-1.1/CHANGES
===================================================================
--- branches/branch-1.1/CHANGES 2008-02-20 17:39:07 UTC (rev 6029)
+++ branches/branch-1.1/CHANGES 2008-02-20 17:42:08 UTC (rev 6030)
@@ -6,6 +6,7 @@
          STR #1742, STR #1777, STR #1794, STR #1827, STR #1843,
          STR #1796, STR #1815, STR #1726, STR #1753, STR #1855,
          STR #1862, STR #1867, STR #1874)
+       - Fixed message sent to hidden widgets (STR #1849)
        - Fixed width calculation in Fl_Help_ViewA (STR #1868)
        - Fixed offset bug in OS X pixmap code (STR #1856)
        - Fixed potential buffer overrun 

Modified: branches/branch-1.1/src/Fl_Group.cxx
===================================================================
--- branches/branch-1.1/src/Fl_Group.cxx        2008-02-20 17:39:07 UTC (rev 
6029)
+++ branches/branch-1.1/src/Fl_Group.cxx        2008-02-20 17:42:08 UTC (rev 
6030)
@@ -260,9 +260,7 @@
 
     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;

_______________________________________________
fltk-commit mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-commit

Reply via email to