From d57999252832f8a0a3146499a89ee2e4294c4ad3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fernando=20Tarl=C3=A1=20Cardoso=20Lemos?= Date: Sun, 22 Jan 2012 13:15:35 -0200 Subject: [PATCH] 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. --- src/move.c | 3 +++ 1 file changed, 3 insertions(+) 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); } -- 2.39.5