Skip to content

Commit

Permalink
Misc: Fix a possible assert() failure
Browse files Browse the repository at this point in the history
  • Loading branch information
richardgv committed Apr 20, 2014
1 parent b7b043c commit 15cd6aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compton.c
Original file line number Diff line number Diff line change
Expand Up @@ -3401,7 +3401,7 @@ win_update_focused(session_t *ps, win *w) {
|| (ps->o.mark_wmwin_focused && w->wmwin)
|| (ps->o.mark_ovredir_focused
&& w->id == w->client_win && !w->wmwin)
|| win_match(ps, w, ps->o.focus_blacklist, &w->cache_fcblst))
|| (IsViewable == w->a.map_state && win_match(ps, w, ps->o.focus_blacklist, &w->cache_fcblst)))
w->focused = true;

// If window grouping detection is enabled, mark the window active if
Expand Down

0 comments on commit 15cd6aa

Please sign in to comment.