Merge branch 'fix_window_decorations' of https://github.com/danbtl/kitty

This commit is contained in:
Kovid Goyal 2018-07-29 20:05:11 +05:30
commit a4e3ce31dd
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -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