mirror of
https://github.com/glfw/glfw.git
synced 2025-10-05 06:06:36 +00:00
Ignore _glfwPlatformShowWindow when already visible
This commit is contained in:
parent
c08a67e825
commit
796e409816
@ -816,12 +816,15 @@ void _glfwPlatformMaximizeWindow(_GLFWwindow* window)
|
||||
|
||||
void _glfwPlatformShowWindow(_GLFWwindow* window)
|
||||
{
|
||||
if (_glfw.wl.wmBase && !window->wl.xdg.toplevel)
|
||||
if (!window->wl.visible)
|
||||
{
|
||||
if (_glfw.wl.wmBase)
|
||||
createXdgSurface(window);
|
||||
else if (!window->wl.shellSurface)
|
||||
createShellSurface(window);
|
||||
window->wl.visible = GLFW_TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
void _glfwPlatformHideWindow(_GLFWwindow* window)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user