mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-22 08:18:08 +02:00
Fix #5477
This commit is contained in:
2
glfw/window.c
vendored
2
glfw/window.c
vendored
@@ -71,7 +71,7 @@ void _glfwInputWindowFocus(_GLFWwindow* window, bool focused)
|
|||||||
_glfw.focusedWindowId = window->id;
|
_glfw.focusedWindowId = window->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
_GLFWwindow* _glfwFocusedWindow() {
|
_GLFWwindow* _glfwFocusedWindow(void) {
|
||||||
if (_glfw.focusedWindowId) {
|
if (_glfw.focusedWindowId) {
|
||||||
_GLFWwindow *w = _glfw.windowListHead;
|
_GLFWwindow *w = _glfw.windowListHead;
|
||||||
while (w) {
|
while (w) {
|
||||||
|
|||||||
Reference in New Issue
Block a user