commit | 90f3e7ac56056ffad50bac9d4497b5830c37ab26 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu Aug 01 22:40:44 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu Aug 01 22:40:44 2019 +0200 |
tree | 5a787144818c26a791d8a0c5cfa5969483b67e29 | |
parent | f4fd7ecbc025e8022c3fbfe52bc512b907cb5459 [diff] [blame] |
patch 8.1.1789: cannot see file name of preview popup window Problem: Cannot see file name of preview popup window. Solution: Add the file name as the title.
diff --git a/src/fileio.c b/src/fileio.c index 1bf4d87..bc0b15b 100644 --- a/src/fileio.c +++ b/src/fileio.c
@@ -6101,6 +6101,9 @@ } status_redraw_all(); redraw_tabline = TRUE; +#ifdef FEAT_TEXT_PROP + popup_update_preview_title(); +#endif } #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \