* src/xdisp.c (redisplay_window): Fix condition for resetting the
window's vscroll. (Bug#70038)
/* The vscroll should be preserved in this case, since
`pixel-scroll-precision-mode' must continue working normally
when a mini-window is resized. (bug#55312) */
- if (!w->preserve_vscroll_p || !window_frozen_p (w))
+ if (!w->preserve_vscroll_p && !window_frozen_p (w))
w->vscroll = 0;
w->preserve_vscroll_p = false;