From a664509c6b637e65fbd417b4a7dece831f5cf6e3 Mon Sep 17 00:00:00 2001 From: Federico Angelilli Date: Thu, 11 Jul 2024 15:26:43 +0200 Subject: Add override_redirect config --- src/display.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/display.c') diff --git a/src/display.c b/src/display.c index 2c8519f..df0a0e6 100644 --- a/src/display.c +++ b/src/display.c @@ -42,7 +42,8 @@ void display_init(display_t *display) assert(randr_version->major_version >= 1); free(randr_version); - xcb_randr_get_screen_info_cookie_t cookie = xcb_randr_get_screen_info(display->connection, display->screen->root); + xcb_randr_get_screen_info_cookie_t cookie = xcb_randr_get_screen_info(display->connection, + display->screen->root); display->info_reply = xcb_randr_get_screen_info_reply(display->connection, cookie, &error); assert(error == NULL); -- cgit v1.2.3