commit 27fafaf963bf5607d357306e89accab0a81277bc parent 30d6ec3467c270c03198f6208633ade12f9a1d72 Author: Dylan Araps <dylan.araps@gmail.com> Date: Sat, 12 Oct 2019 21:22:01 +0300 sowm: simpler delete Diffstat:
M | sowm.c | | | 13 | +------------ |
1 file changed, 1 insertion(+), 12 deletions(-)
diff --git a/sowm.c b/sowm.c @@ -200,18 +200,7 @@ void win_to_ws(const Arg arg) { } void notify_destroy(XEvent *e) { - int i = 0; - client *c; - - XDestroyWindowEvent *ev = &e->xdestroywindow; - - for WIN - if(ev->window == c->win) i++; - - if (i == 0) - return; - - win_del(ev->window); + win_del(e->xdestroywindow.window); } void configure_request(XEvent *e) {