about summary refs log tree commit diff
diff options
context:
space:
mode:
authorokan <okan>2013-12-10 21:27:37 +0000
committerokan <okan>2013-12-10 21:27:37 +0000
commit1d68f0683a784420b5a6ec0b8f1622b6ccd5fcc7 (patch)
tree647c2d6c68b5c70e00adb2a3cef2573d44a272e7
parent7fad5224d47aba47d4fe02d2ce2b20e058bdedc0 (diff)
downloadcwm-1d68f0683a784420b5a6ec0b8f1622b6ccd5fcc7.tar.gz
cwm-1d68f0683a784420b5a6ec0b8f1622b6ccd5fcc7.tar.xz
cwm-1d68f0683a784420b5a6ec0b8f1622b6ccd5fcc7.zip
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@
-rw-r--r--client.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/client.c b/client.c
index 9834757..d6019f6 100644
--- a/client.c
+++ b/client.c
@@ -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