Author: mike
Date: 2007-12-15 09:32:39 -0800 (Sat, 15 Dec 2007)
New Revision: 5998
Log:
Fl_Gl_Window::mode() needed to hide and show the window when toggling stereo
mode (STR #1846)



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

Modified: branches/branch-1.1/CHANGES
===================================================================
--- branches/branch-1.1/CHANGES 2007-12-15 17:29:32 UTC (rev 5997)
+++ branches/branch-1.1/CHANGES 2007-12-15 17:32:39 UTC (rev 5998)
@@ -4,6 +4,8 @@
          STR #1457, STR #1458, STR #1460, STR #1481, STR #1578,
          STR #1639, STR #1645, STR #1644, STR #1792, STR #1793,
          STR #1742, STR #1777, STR #1794, STR #1827, STR #1843)
+       - Fl_Gl_Window::mode() needed to hide and show the window
+         when toggling stereo mode (STR #1846)
        - Fl_Gl_Window::show() did not work reliably on Mac OS X
          (STR #1707)
        - Added Fl_Group::clip_children() methods to support

Modified: branches/branch-1.1/src/Fl_Gl_Window.cxx
===================================================================
--- branches/branch-1.1/src/Fl_Gl_Window.cxx    2007-12-15 17:29:32 UTC (rev 
5997)
+++ branches/branch-1.1/src/Fl_Gl_Window.cxx    2007-12-15 17:32:39 UTC (rev 
5998)
@@ -114,7 +114,7 @@
   if (shown()) {
     g = Fl_Gl_Choice::find(m, a);
 #if defined(WIN32)
-    if (!g || (oldmode^m)&FL_DOUBLE) {
+    if (!g || (oldmode^m)&(FL_DOUBLE|FL_STEREO)) {
       hide();
       show();
     }

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

Reply via email to