diff --git a/README.md b/README.md index 3e0fb5ad..6470cd58 100644 --- a/README.md +++ b/README.md @@ -129,6 +129,7 @@ information on what to include when reporting a bug. - [Wayland] Bugfix: Disable key repeat mechanism when window loses input focus - [Wayland] Bugfix: Window hiding and showing did not work (#1492,#1731) - [Wayland] Bugfix: A key being repeated was not released when window lost focus + - [Wayland] Bugfix: Showing a hidden window did not emit a window refresh event ## Contact diff --git a/src/wl_window.c b/src/wl_window.c index c73a2cf9..002fead9 100644 --- a/src/wl_window.c +++ b/src/wl_window.c @@ -1180,6 +1180,7 @@ void _glfwPlatformShowWindow(_GLFWwindow* window) createShellSurface(window); window->wl.visible = GLFW_TRUE; + _glfwInputWindowDamage(window); } }