docs: update

This commit is contained in:
Dylan Araps 2019-10-13 17:57:24 +03:00
parent 7b876932a7
commit 31589b5e94
1 changed files with 3 additions and 6 deletions

9
sowm.c
View File

@ -88,6 +88,8 @@ static void (*events[LASTEvent])(XEvent *e) = {
void notify_destroy(XEvent *e) {
win_del(e->xdestroywindow.window);
if (list) XSetInputFocus(dis, list->win, RevertToParent, CurrentTime);
}
void notify_enter(XEvent *e) {
@ -208,12 +210,7 @@ void win_del(Window w) {
void win_kill() {
Window cur = win_current();
if (cur != root) {
XKillClient(dis, cur);
win_del(cur);
if (list) XSetInputFocus(dis, list->win, RevertToParent, CurrentTime);
}
if (cur != root) XKillClient(dis, cur);
}
void win_center(Window w) {