aboutsummaryrefslogtreecommitdiff
path: root/dwl.c
diff options
context:
space:
mode:
authorLeonardo Hernández Hernández <leohdz172@proton.me>2024-07-27 21:34:18 -0600
committerLeonardo Hernández Hernández <leohdz172@proton.me>2024-07-27 21:59:27 -0600
commitb5abbc37d8161c7ac8d05010e0effbc6af81718b (patch)
treed7d52a1fe33117ea124dc7f5e7537725035e0d32 /dwl.c
parent986beef5be32a2bead22ca85d19f4d6d7e5c0ce1 (diff)
downloaddwl-b5abbc37d8161c7ac8d05010e0effbc6af81718b.tar.gz
fix crash when re-mapping a client
Fixes: ab5c554d096ebca8446b7b1354c49be014b8b747
Diffstat (limited to 'dwl.c')
-rw-r--r--dwl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwl.c b/dwl.c
index 5f9491b..2db3c15 100644
--- a/dwl.c
+++ b/dwl.c
@@ -2183,7 +2183,7 @@ resize(Client *c, struct wlr_box geo, int interact)
struct wlr_box *bbox;
struct wlr_box clip;
- if (!c->mon || !c->scene)
+ if (!c->mon || !client_surface(c)->mapped)
return;
bbox = interact ? &sgeom : &c->mon->w;