mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
fix(float): properly find last window of tabpage (#30571)
This commit is contained in:
@@ -59,7 +59,7 @@ win_T *win_new_float(win_T *wp, bool last, WinConfig fconfig, Error *err)
|
||||
if (!tp) {
|
||||
return NULL;
|
||||
}
|
||||
tp_last = tp->tp_lastwin;
|
||||
tp_last = tp == curtab ? lastwin : tp->tp_lastwin;
|
||||
while (tp_last->w_floating && tp_last->w_prev) {
|
||||
tp_last = tp_last->w_prev;
|
||||
}
|
||||
|
Reference in New Issue
Block a user