fix code duplication resulting from rebase
This commit is contained in:
parent
e2c14ee545
commit
0d4c6fc5cc
|
@ -2353,11 +2353,9 @@ ev_window(XEvent *ev) {
|
||||||
inline static void
|
inline static void
|
||||||
ev_focus_in(XFocusChangeEvent *ev) {
|
ev_focus_in(XFocusChangeEvent *ev) {
|
||||||
win *w = find_win(dpy, ev->window);
|
win *w = find_win(dpy, ev->window);
|
||||||
if (!w) return;
|
|
||||||
|
|
||||||
// To deal with events sent from windows just destroyed
|
// To deal with events sent from windows just destroyed
|
||||||
if (!w)
|
if (!w) return;
|
||||||
return;
|
|
||||||
|
|
||||||
w->focused = True;
|
w->focused = True;
|
||||||
calc_opacity(dpy, w, False);
|
calc_opacity(dpy, w, False);
|
||||||
|
@ -2376,11 +2374,10 @@ ev_focus_out(XFocusChangeEvent *ev) {
|
||||||
}
|
}
|
||||||
|
|
||||||
win *w = find_win(dpy, ev->window);
|
win *w = find_win(dpy, ev->window);
|
||||||
if (!w) return;
|
|
||||||
|
|
||||||
// To deal with events sent from windows just destroyed
|
// To deal with events sent from windows just destroyed
|
||||||
if (!w)
|
if (!w) return;
|
||||||
return;
|
|
||||||
w->focused = False;
|
w->focused = False;
|
||||||
|
|
||||||
calc_opacity(dpy, w, False);
|
calc_opacity(dpy, w, False);
|
||||||
|
|
Loading…
Reference in New Issue