sowm: simpler alt tab

This commit is contained in:
Dylan Araps 2019-10-19 00:18:03 +03:00
parent 7fe47aefc1
commit 3f66256197
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E

7
sowm.c
View File

@ -213,11 +213,8 @@ void win_next() {
win_current(); win_current();
for win if (c->w == cur) { for win if (c->w == cur) {
c = c->next ? c->next : list; win_focus(c->next->w);
XRaiseWindow(d, c->next->w);
win_focus(c->w);
XRaiseWindow(d, c->w);
return;
} }
} }