aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-03-20 12:30:53 +0100
committerFurkan Sahin <furkan-dev@proton.me>2021-03-20 12:30:53 +0100
commit641a2f10482e08ee6cbd0fe461b3d0a4a8a65c96 (patch)
tree85acf3cb2d17c1e4eaa312813053de5b6e3bcd14
parent3f7386128b537dbd71993b0f3a563f8b49f22fb4 (diff)
idle_inhibit: Store wlr inhibitor instead of view
When an application inhibited idle, a view pointer was stored and a destroy listener was registered to the wlr inhibitor. As the wlr inhibitor lives longer than the view, this lead to a dangling view pointer between view unmap and inhibitor destroy. Store a pointer to the wlr inhibitor instead of to the view, and look up the view when needed, which may at any point be NULL. This also allows for an inhibitor to remain functional if a surface is re-mapped.
-rw-r--r--include/sway/desktop/idle_inhibit_v1.h1
-rw-r--r--sway/desktop/idle_inhibit_v1.c8
2 files changed, 5 insertions, 4 deletions
diff --git a/include/sway/desktop/idle_inhibit_v1.h b/include/sway/desktop/idle_inhibit_v1.h
index 0adafdb9..58d54c68 100644
--- a/include/sway/desktop/idle_inhibit_v1.h
+++ b/include/sway/desktop/idle_inhibit_v1.h
@@ -22,6 +22,7 @@ struct sway_idle_inhibit_manager_v1 {
struct sway_idle_inhibitor_v1 {
struct sway_idle_inhibit_manager_v1 *manager;
+ struct wlr_idle_inhibitor_v1 *wlr_inhibitor;
struct sway_view *view;
enum sway_idle_inhibit_mode mode;
diff --git a/sway/desktop/idle_inhibit_v1.c b/sway/desktop/idle_inhibit_v1.c
index a5cfd5b2..a6ad7166 100644
--- a/sway/desktop/idle_inhibit_v1.c
+++ b/sway/desktop/idle_inhibit_v1.c
@@ -36,7 +36,7 @@ void handle_idle_inhibitor_v1(struct wl_listener *listener, void *data) {
inhibitor->manager = manager;
inhibitor->mode = INHIBIT_IDLE_APPLICATION;
- inhibitor->view = view_from_wlr_surface(wlr_inhibitor->surface);
+ inhibitor->wlr_inhibitor = wlr_inhibitor;
wl_list_insert(&manager->inhibitors, &inhibitor->link);
inhibitor->destroy.notify = handle_destroy;
@@ -104,10 +104,10 @@ void sway_idle_inhibit_v1_user_inhibitor_destroy(
bool sway_idle_inhibit_v1_is_active(struct sway_idle_inhibitor_v1 *inhibitor) {
switch (inhibitor->mode) {
- case INHIBIT_IDLE_APPLICATION:
+ case INHIBIT_IDLE_APPLICATION:;
// If there is no view associated with the inhibitor, assume visible
- return !inhibitor->view || !inhibitor->view->container ||
- view_is_visible(inhibitor->view);
+ struct sway_view *view = view_from_wlr_surface(inhibitor->wlr_inhibitor->surface);
+ return !view || !view->container || view_is_visible(view);
case INHIBIT_IDLE_FOCUS:;
struct sway_seat *seat = NULL;
wl_list_for_each(seat, &server.input->seats, link) {