aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/layer_shell.c
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2021-09-30 21:03:09 +0200
committerLibravatar Kirill Primak <vyivel@posteo.net>2021-10-01 00:21:56 +0300
commitc43f1fbf1c0f9ec607854ab912324ce150c43f7b (patch)
tree2a3a8190a9720f18a365ae48fa5d9576282512dd /sway/desktop/layer_shell.c
parentAdd support for DRM panel orientation (diff)
downloadsway-c43f1fbf1c0f9ec607854ab912324ce150c43f7b.tar.gz
sway-c43f1fbf1c0f9ec607854ab912324ce150c43f7b.tar.zst
sway-c43f1fbf1c0f9ec607854ab912324ce150c43f7b.zip
Chase wlr_xdg_surface breaking changes
See [1]. [1]: https://github.com/swaywm/wlroots/pull/3106
Diffstat (limited to 'sway/desktop/layer_shell.c')
-rw-r--r--sway/desktop/layer_shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/desktop/layer_shell.c b/sway/desktop/layer_shell.c
index 7b249be3..7f5a337b 100644
--- a/sway/desktop/layer_shell.c
+++ b/sway/desktop/layer_shell.c
@@ -483,8 +483,8 @@ static struct sway_layer_surface *popup_get_layer(
483static void popup_damage(struct sway_layer_popup *layer_popup, bool whole) { 483static void popup_damage(struct sway_layer_popup *layer_popup, bool whole) {
484 struct wlr_xdg_popup *popup = layer_popup->wlr_popup; 484 struct wlr_xdg_popup *popup = layer_popup->wlr_popup;
485 struct wlr_surface *surface = popup->base->surface; 485 struct wlr_surface *surface = popup->base->surface;
486 int popup_sx = popup->geometry.x - popup->base->geometry.x; 486 int popup_sx = popup->geometry.x - popup->base->current.geometry.x;
487 int popup_sy = popup->geometry.y - popup->base->geometry.y; 487 int popup_sy = popup->geometry.y - popup->base->current.geometry.y;
488 int ox = popup_sx, oy = popup_sy; 488 int ox = popup_sx, oy = popup_sy;
489 struct sway_layer_surface *layer; 489 struct sway_layer_surface *layer;
490 while (true) { 490 while (true) {