mirror of
https://github.com/glfw/glfw.git
synced 2024-11-22 04:54:35 +00:00
Ignore _glfwPlatformShowWindow when already visible
This commit is contained in:
parent
f710db6504
commit
4778d02c67
@ -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