diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-12-09 17:22:51 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-12-09 17:23:45 +0100 |
commit | 6be9dee8685e9f79aa0b182e8acb690ea9ac16ef (patch) | |
tree | 98dc72d7c2496283549ff7340b8739cd7cb8e8e7 /src/Overlay.cpp | |
parent | f38661593795e51e45e2dc2ead8a7bf897d226f6 (diff) |
Fix freeze on startup on hyprland because of hack workaround, requires window to be visible. Remove titlebar on hyprland
Diffstat (limited to 'src/Overlay.cpp')
-rw-r--r-- | src/Overlay.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Overlay.cpp b/src/Overlay.cpp index e10b1e4..d306910 100644 --- a/src/Overlay.cpp +++ b/src/Overlay.cpp @@ -301,7 +301,8 @@ namespace gsr { static mgl::vec2i create_window_get_center_position(Display *display) { XSetWindowAttributes window_attr; window_attr.event_mask = StructureNotifyMask; - const Window window = XCreateWindow(display, DefaultRootWindow(display), 0, 0, 32, 32, 0, CopyFromParent, InputOutput, CopyFromParent, CWEventMask, &window_attr); + window_attr.background_pixel = 0; + const Window window = XCreateWindow(display, DefaultRootWindow(display), 0, 0, 16, 16, 0, CopyFromParent, InputOutput, CopyFromParent, CWBackPixel | CWEventMask, &window_attr); if(!window) return {0, 0}; @@ -1002,8 +1003,7 @@ namespace gsr { // XFlush(display); // } - if(!prevent_game_minimizing) - window->set_fullscreen(true); + window->set_fullscreen(true); visible = true; |