Allow specifying --listen-on for panel kitten

This commit is contained in:
Kovid Goyal
2025-04-22 14:27:51 +05:30
parent 22fe41a047
commit 8b6a210ac1
4 changed files with 53 additions and 19 deletions

4
glfw/wl_window.c vendored
View File

@@ -1685,7 +1685,8 @@ void _glfwPlatformShowWindow(_GLFWwindow* window)
else create_window_desktop_surface(window);
window->wl.visible = true;
commit_window_surface(window);
if (is_layer_shell(window)) debug("Layer shell surface mapped waiting for configure event from compositor\n");
debug("Window %llu show requested\n", window->id);
if (is_layer_shell(window)) { debug("Layer shell surface mapped waiting for configure event from compositor\n"); }
}
}
@@ -1706,6 +1707,7 @@ void _glfwPlatformHideWindow(_GLFWwindow* window)
window->swaps_disallowed = true;
window->wl.visible = false;
commit_window_surface(window);
debug("Window %llu hide requested\n", window->id);
}
bool _glfwPlatformSetLayerShellConfig(_GLFWwindow* window, const GLFWLayerShellConfig *value) {