aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-07-23 16:16:19 -0600
committerA Frederick Christensen <dwl@ivories.org>2024-07-24 06:25:54 -0500
commitcd216908a7c26f547b7e10a389aea6b754afb6d1 (patch)
treeaa0c15fcd0dfee3afa21b79c161d2b63417534f3
parentf2c5023a3a6b9abd45c81e7547b111fb5ab119bf (diff)
downloaddwl-cd216908a7c26f547b7e10a389aea6b754afb6d1.tar.gz
send scale on initial commit to layer surfaces
Signed-off-by: Leonardo Hernández Hernández <leohdz172@proton.me>
-rw-r--r--dwl.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/dwl.c b/dwl.c
index 5bf995e..5f9491b 100644
--- a/dwl.c
+++ b/dwl.c
@@ -763,6 +763,9 @@ commitlayersurfacenotify(struct wl_listener *listener, void *data)
struct wlr_layer_surface_v1_state old_state;
if (l->layer_surface->initial_commit) {
+ wlr_fractional_scale_v1_notify_scale(layer_surface->surface, l->mon->wlr_output->scale);
+ wlr_surface_set_preferred_buffer_scale(layer_surface->surface, (int32_t)ceilf(l->mon->wlr_output->scale));
+
/* Temporarily set the layer's current state to pending
* so that we can easily arrange it */
old_state = l->layer_surface->current;
@@ -945,8 +948,6 @@ createlayersurface(struct wl_listener *listener, void *data)
wl_list_insert(&l->mon->layers[layer_surface->pending.layer],&l->link);
wlr_surface_send_enter(surface, layer_surface->output);
- wlr_fractional_scale_v1_notify_scale(surface, l->mon->wlr_output->scale);
- wlr_surface_set_preferred_buffer_scale(surface, (int32_t)ceilf(l->mon->wlr_output->scale));
}
void