diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2025-10-20 15:09:18 +0200 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2025-10-20 15:09:52 +0200 |
| commit | efac0cb9ab3f228a28f365ef7e3ad3acf3144eff (patch) | |
| tree | 5225e38b1316d3e44633a5670ec00e4dc7da0eb0 /src/Fl_Gl_Window.cxx | |
| parent | 0ced7991b4d855538f426e95a2f9eb76ba3dbf0f (diff) | |
Fix "New Wayland subwindow code creates issues with resizes of opengl windows…" (#1311)
Diffstat (limited to 'src/Fl_Gl_Window.cxx')
| -rw-r--r-- | src/Fl_Gl_Window.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Fl_Gl_Window.cxx b/src/Fl_Gl_Window.cxx index b56bd30f9..56d6f076f 100644 --- a/src/Fl_Gl_Window.cxx +++ b/src/Fl_Gl_Window.cxx @@ -300,6 +300,7 @@ void Fl_Gl_Window::resize(int X,int Y,int W,int H) { if (is_a_resize) valid(0); pGlWindowDriver->resize(is_a_resize, W, H); Fl_Window::resize(X,Y,W,H); + if (is_a_resize) pGlWindowDriver->after_resize(); } /** |
