diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-08-01 22:40:44 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-08-01 22:40:44 +0200 |
commit | 90f3e7ac56056ffad50bac9d4497b5830c37ab26 (patch) | |
tree | 5a787144818c26a791d8a0c5cfa5969483b67e29 /src/fileio.c | |
parent | f4fd7ecbc025e8022c3fbfe52bc512b907cb5459 (diff) | |
download | vim-git-90f3e7ac56056ffad50bac9d4497b5830c37ab26.tar.gz |
patch 8.1.1789: cannot see file name of preview popup windowv8.1.1789
Problem: Cannot see file name of preview popup window.
Solution: Add the file name as the title.
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fileio.c b/src/fileio.c index 1bf4d8760..bc0b15b91 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -6101,6 +6101,9 @@ shorten_fnames(int force) } status_redraw_all(); redraw_tabline = TRUE; +#ifdef FEAT_TEXT_PROP + popup_update_preview_title(); +#endif } #if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \ |