summaryrefslogtreecommitdiffstats
path: root/src/mbyte.c
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <mattn.jp@gmail.com>2023-01-10 16:03:08 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-10 16:03:08 +0000
commit2bc849ff811059d25310399f982c6706faa7eb35 (patch)
tree1568860af18584b319a18c426162e52751b680d2 /src/mbyte.c
parent523f22d57794a73495aa49f667d7f90cc9c8b5c6 (diff)
patch 9.0.1171: screen is not redrawn after using setcellwidths()v9.0.1171
Problem: Screen is not redrawn after using setcellwidths(). Solution: Redraw the screen when the cell widths have changed. (Yasuhiro Matsumoto, closes #11800)
Diffstat (limited to 'src/mbyte.c')
-rw-r--r--src/mbyte.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mbyte.c b/src/mbyte.c
index aa2b177ce6..1570cef231 100644
--- a/src/mbyte.c
+++ b/src/mbyte.c
@@ -5742,6 +5742,7 @@ f_setcellwidths(typval_T *argvars, typval_T *rettv UNUSED)
}
vim_free(cw_table_save);
+ redraw_all_later(UPD_CLEAR);
}
void