Quick access terminal: Allow toggling the window to full screen and map using the standard kitty toggle_fullscreen shortcut

Fixes #8626
This commit is contained in:
Kovid Goyal
2025-05-12 15:20:48 +05:30
parent cf69385823
commit 9ed6be9272
12 changed files with 91 additions and 22 deletions

9
glfw/window.c vendored
View File

@@ -551,6 +551,15 @@ GLFWAPI void glfwSetWindowShouldClose(GLFWwindow* handle, int value)
window->shouldClose = value;
}
GLFWAPI const GLFWLayerShellConfig* glfwGetLayerShellConfig(GLFWwindow* handle) {
_GLFWwindow* window = (_GLFWwindow*) handle;
assert(window != NULL);
_GLFW_REQUIRE_INIT_OR_RETURN(false);
return _glfwPlatformGetLayerShellConfig(window);
}
GLFWAPI bool glfwSetLayerShellConfig(GLFWwindow* handle, const GLFWLayerShellConfig *value) {
_GLFWwindow* window = (_GLFWwindow*) handle;
assert(window != NULL);