Fix multiscreen focus coloring.

This commit is contained in:
Kris Maglione 2010-07-19 09:29:12 -04:00
parent 3ca478a6e0
commit 7b1ed1981c
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ frame_draw(Frame *f) {
fr = rectsetorigin(c->framewin->r, ZP);
/* Pick colors. */
if(c == selclient() || c == disp.focus)
if((c == selclient() || c == disp.focus) && disp.sel)
col = &def.focuscolor;
else
col = &def.normcolor;