commit | 4569020538f76cab588f723bd7243e3896937568 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Sep 26 12:57:11 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Sep 26 12:57:11 2022 +0100 |
tree | c8c1ba2d2c6b1e734a380b06c3ddf24b62119239 | |
parent | ee09fcc9b6cf24e02899461809da9a5148208ea5 [diff] [blame] |
patch 9.0.0591: message window popup shows on only one tab page Problem: Message window popup shows on only one tab page. (Naruhiko Nishino) Solution: Show the message window popup on all tab pages. (closes #11231)
diff --git a/src/popupwin.c b/src/popupwin.c index 4cc7dec..aae5465 100644 --- a/src/popupwin.c +++ b/src/popupwin.c
@@ -2053,6 +2053,8 @@ } } } + else if (popup_is_notification(type)) + tabnr = -1; // show on all tabs // Create the window and buffer. wp = win_alloc_popup_win();