Enable scrolling of output with UI scale changes
This commit is contained in:
parent
4c96e9676b
commit
a7b2e090ad
|
@ -1760,7 +1760,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;
|
||||
|
|
Loading…
Reference in New Issue