fix code duplication resulting from rebase

pull/2/head
Christopher Jeffrey 12 years ago
parent 6278604753
commit 72a1177115

@ -2353,11 +2353,9 @@ ev_window(XEvent *ev) {
inline static void
ev_focus_in(XFocusChangeEvent *ev) {
win *w = find_win(dpy, ev->window);
if (!w) return;
// To deal with events sent from windows just destroyed
if (!w)
return;
if (!w) return;
w->focused = True;
calc_opacity(dpy, w, False);
@ -2376,11 +2374,10 @@ ev_focus_out(XFocusChangeEvent *ev) {
}
win *w = find_win(dpy, ev->window);
if (!w) return;
// To deal with events sent from windows just destroyed
if (!w)
return;
if (!w) return;
w->focused = False;
calc_opacity(dpy, w, False);

Loading…
Cancel
Save