Enable scrolling of output with UI scale changes

(cherry picked from commit a7b2e090ad)
This commit is contained in:
Roy Berube 2024-01-23 20:20:18 +01:00 committed by Yuri Sizov
parent 8a395124e6
commit d8b89badfd
1 changed files with 1 additions and 1 deletions

View File

@ -1659,7 +1659,7 @@ void RichTextLabel::_scroll_changed(double) {
return;
}
if (scroll_follow && vscroll->get_value() >= (vscroll->get_max() - vscroll->get_page())) {
if (scroll_follow && vscroll->get_value() >= (vscroll->get_max() - Math::round(vscroll->get_page()))) {
scroll_following = true;
} else {
scroll_following = false;