simplify check for surface's node state

all `struct wlr_surface` should have a `wlr_scene_tree *` as data
This commit is contained in:
Leonardo Hernández Hernández 2022-11-30 18:54:54 -06:00
parent 10c56d6348
commit 6df6781b43
No known key found for this signature in database
GPG Key ID: E538897EE11B9624
1 changed files with 1 additions and 2 deletions

3
dwl.c
View File

@ -594,11 +594,10 @@ void
checkidleinhibitor(struct wlr_surface *exclude)
{
int inhibited = 0;
struct wlr_scene_tree *tree;
struct wlr_idle_inhibitor_v1 *inhibitor;
wl_list_for_each(inhibitor, &idle_inhibit_mgr->inhibitors, link) {
struct wlr_scene_tree *tree = inhibitor->surface->data;
if (bypass_surface_visibility || (exclude != inhibitor->surface
&& (tree = inhibitor->surface->data)
&& tree->node.enabled)) {
inhibited = 1;
break;