aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2024-01-23 10:10:42 -0500
committerFurkan Sahin <furkan-dev@proton.me>2024-01-23 10:10:42 -0500
commitdeb8fd9ad5023624a36ca5f9019835bf18cc8b90 (patch)
treebaf75520b0794964485e1bc1c8fa49897506f0eb /include
parent38f22d0f54c96f6b4c5180eb48e95e6109c94215 (diff)
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 @@
#define _SWAY_TRANSACTION_H
#include <stdint.h>
#include <stdbool.h>
+#include <wlr/types/wlr_scene.h>
/**
* Transactions enable us to perform atomic layout updates.
@@ -58,4 +59,6 @@ bool transaction_notify_view_ready_by_serial(struct sway_view *view,
bool transaction_notify_view_ready_by_geometry(struct sway_view *view,
double x, double y, int width, int height);
+void arrange_popups(struct wlr_scene_tree *popups);
+
#endif