From 77f456bd9c2c65ee168bb8b57043882b247743c0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 22 Jan 2021 21:06:58 +0530 Subject: [PATCH] Fix #3253 --- kitty/glfw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/glfw.c b/kitty/glfw.c index f5162419a..c19755862 100644 --- a/kitty/glfw.c +++ b/kitty/glfw.c @@ -580,7 +580,7 @@ create_os_window(PyObject UNUSED *self, PyObject *args) { GLFWwindow *temp_window = NULL; #ifdef __APPLE__ if (!apple_preserve_common_context) { - apple_preserve_common_context = glfwCreateWindow(100, 200, "kitty", NULL, common_context); + apple_preserve_common_context = glfwCreateWindow(640, 480, "kitty", NULL, common_context); } if (!common_context) common_context = apple_preserve_common_context; #endif