commit | 78d21dae9c3a39efb30316d3e38dce120bc1abbd | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Feb 17 15:00:52 2019 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Feb 17 15:00:52 2019 +0100 |
tree | 5357adccfdb180cd25ea87b895bd067aa89c2ef5 | |
parent | 3678f65d43d10b36dc62738aab2f341fa1e18a32 [diff] [blame] |
patch 8.1.0940: MS-Windows console resizing not handled properly Problem: MS-Windows console resizing not handled properly. Solution: Handle resizing the console better. (Nobuhiro Takasaki, closes #3968, closes #3611)
diff --git a/src/normal.c b/src/normal.c index 624e347..ca0d8ff 100644 --- a/src/normal.c +++ b/src/normal.c
@@ -5401,6 +5401,9 @@ # endif #endif redraw_later(CLEAR); +#if defined(WIN3264) && !defined(FEAT_GUI_W32) + resize_console_buf(); +#endif } }