summaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-01 22:40:44 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-01 22:40:44 +0200
commit90f3e7ac56056ffad50bac9d4497b5830c37ab26 (patch)
tree5a787144818c26a791d8a0c5cfa5969483b67e29 /src/fileio.c
parentf4fd7ecbc025e8022c3fbfe52bc512b907cb5459 (diff)
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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 1bf4d87607..bc0b15b914 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)) \