diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2007-12-15 17:29:32 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2007-12-15 17:29:32 +0000 |
| commit | f525fc1160ddbce3660fe986dca07d7bb188d02a (patch) | |
| tree | ca485da718da58a12aa253119ad8f838428bcb06 /src | |
| parent | b3c0a67be8610852972880ce692e9787d0ae43f2 (diff) | |
Add set_visible() for GL windows on Mac OS X (STR #1707)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5997 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src')
| -rw-r--r-- | src/Fl_Gl_Window.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Fl_Gl_Window.cxx b/src/Fl_Gl_Window.cxx index f16f3ef28..e9b10ca7e 100644 --- a/src/Fl_Gl_Window.cxx +++ b/src/Fl_Gl_Window.cxx @@ -84,6 +84,10 @@ void Fl_Gl_Window::show() { #endif } Fl_Window::show(); + +#ifdef __APPLE__ + set_visible(); +#endif /* __APPLE__ */ } void Fl_Gl_Window::invalidate() { |
