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.
This commit is contained in:
Nihal Jere 2021-07-25 21:46:31 -05:00 committed by Daniel Eklöf
parent 075290deb6
commit 52f50c556d
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

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