From 56cafe56c361014797cd6b6788a6fd2a05274768 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sat, 15 Dec 2007 17:32:39 +0000 Subject: Fl_Gl_Window::mode() needed to hide and show the window when toggling stereo mode (STR #1846) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5998 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_Gl_Window.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/Fl_Gl_Window.cxx b/src/Fl_Gl_Window.cxx index e9b10ca7e..10a9ae30f 100644 --- a/src/Fl_Gl_Window.cxx +++ b/src/Fl_Gl_Window.cxx @@ -114,7 +114,7 @@ int Fl_Gl_Window::mode(int m, const int *a) { 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(); } -- cgit v1.2.3