mirror of
https://github.com/neovim/neovim.git
synced 2026-07-16 14:11:28 +00:00
fix(session): window sizes not stored with float windows (#37344)
This commit is contained in:
@@ -783,7 +783,7 @@ static int makeopens(FILE *fd, char *dirnow)
|
||||
for (win_T *wp = tab_firstwin; wp != NULL; wp = wp->w_next) {
|
||||
if (ses_do_win(wp)) {
|
||||
nr++;
|
||||
} else {
|
||||
} else if (!wp->w_floating) {
|
||||
restore_size = false;
|
||||
}
|
||||
if (curwin == wp) {
|
||||
|
||||
Reference in New Issue
Block a user