From 8a725d3d3e1498e60de56c1d20d0700d5f2e358c Mon Sep 17 00:00:00 2001 From: Daniel Beitler Date: Sun, 29 Jul 2018 10:12:07 -0400 Subject: [PATCH] Fix hiding window decorations under X11/Wayland --- kitty/glfw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/glfw.c b/kitty/glfw.c index 206e55f05..06b788dc7 100644 --- a/kitty/glfw.c +++ b/kitty/glfw.c @@ -397,7 +397,7 @@ create_os_window(PyObject UNUSED *self, PyObject *args) { glfwWindowHintString(GLFW_X11_INSTANCE_NAME, wm_class_name); glfwWindowHintString(GLFW_X11_CLASS_NAME, wm_class_class); if (OPT(x11_hide_window_decorations)) { - glfwWindowHint(GLFW_DECORATED, GLFW_TRUE); + glfwWindowHint(GLFW_DECORATED, GLFW_FALSE); } #endif