From 52f50c556d485c99ff1d8e4f12d9f0499e283148 Mon Sep 17 00:00:00 2001 From: Nihal Jere Date: Sun, 25 Jul 2021 21:46:31 -0500 Subject: [PATCH] wayland: set scale to 1 by default The wl_output protocol specifies that the client should assume that scale is 1 if not set by the compositor. --- wayland.c | 1 + 1 file changed, 1 insertion(+) diff --git a/wayland.c b/wayland.c index 7e9ba629..911694ff 100644 --- a/wayland.c +++ b/wayland.c @@ -964,6 +964,7 @@ handle_global(void *data, struct wl_registry *registry, tll_push_back( wayl->monitors, ((struct monitor){.wayl = wayl, .output = output, .wl_name = name, + .scale = 1, .use_output_release = version >= WL_OUTPUT_RELEASE_SINCE_VERSION})); struct monitor *mon = &tll_back(wayl->monitors);