Redraw client border when unhiding; during a hide, we just unset

the active flag but never redraw since it'll be in IconicState.

Behaviour reported by sthen@
This commit is contained in:
okan 2013-12-10 21:27:37 +00:00
parent 7fad5224d4
commit 1d68f0683a

View File

@ -471,6 +471,7 @@ client_unhide(struct client_ctx *cc)
cc->flags &= ~CLIENT_HIDDEN;
cc->state = NormalState;
xu_set_wm_state(cc->win, cc->state);
client_draw_border(cc);
}
void