fix(column): always set b_signcols.max

Fix #26135
This commit is contained in:
Luuk van Baal 2023-11-21 14:53:43 +01:00 committed by Lewis Russell
parent 585eeacb24
commit e89071522c

View File

@ -4096,10 +4096,10 @@ int buf_signcols(buf_T *buf, int max)
// Check if we need to redraw
if (signcols != buf->b_signcols.size) {
buf->b_signcols.size = signcols;
buf->b_signcols.max = max;
redraw_buf_later(buf, UPD_NOT_VALID);
}
buf->b_signcols.max = max;
buf->b_signcols.valid = true;
}