aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Alexander Orzechowski <alex@ozal.ski>2024-01-23 10:10:42 -0500
committerLibravatar Kirill Primak <vyivel@eclair.cafe>2024-02-12 19:19:22 +0300
commit1dc661af176d80db8b283e9c38fd127f71d33052 (patch)
treebaf75520b0794964485e1bc1c8fa49897506f0eb /include
parentext-foreign-toplevel-list: Implement protocol (diff)
downloadsway-1dc661af176d80db8b283e9c38fd127f71d33052.tar.gz
sway-1dc661af176d80db8b283e9c38fd127f71d33052.tar.zst
sway-1dc661af176d80db8b283e9c38fd127f71d33052.zip
layer_shell: Arrange popups even if exclusive zone doesn't change
Diffstat (limited to 'include')
-rw-r--r--include/sway/desktop/transaction.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sway/desktop/transaction.h b/include/sway/desktop/transaction.h
index 17d41fa3..dd7edb7a 100644
--- a/include/sway/desktop/transaction.h
+++ b/include/sway/desktop/transaction.h
@@ -2,6 +2,7 @@
2#define _SWAY_TRANSACTION_H 2#define _SWAY_TRANSACTION_H
3#include <stdint.h> 3#include <stdint.h>
4#include <stdbool.h> 4#include <stdbool.h>
5#include <wlr/types/wlr_scene.h>
5 6
6/** 7/**
7 * Transactions enable us to perform atomic layout updates. 8 * Transactions enable us to perform atomic layout updates.
@@ -58,4 +59,6 @@ bool transaction_notify_view_ready_by_serial(struct sway_view *view,
58bool transaction_notify_view_ready_by_geometry(struct sway_view *view, 59bool transaction_notify_view_ready_by_geometry(struct sway_view *view,
59 double x, double y, int width, int height); 60 double x, double y, int width, int height);
60 61
62void arrange_popups(struct wlr_scene_tree *popups);
63
61#endif 64#endif