From: Fernando Tarlá Cardoso Lemos Date: Sun, 22 Jan 2012 15:15:35 +0000 (-0200) Subject: Force redrawing the indicators after a move. X-Git-Tag: 4.2~119 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d57999252832f8a0a3146499a89ee2e4294c4ad3;p=i3%2Fi3 Force redrawing the indicators after a move. Fixes a bug where splitting then moving in the other orientation (e.g. v-splitting and moving right) would result in the old indicators not disappearing. --- diff --git a/src/move.c b/src/move.c index 00bcf2d9..d1ac8a68 100644 --- a/src/move.c +++ b/src/move.c @@ -195,5 +195,8 @@ end: * container(s) would still point to the old container(s)). */ con_focus(con); + /* force re-painting the indicators */ + FREE(con->deco_render_params); + tree_flatten(croot); }