Merge pull request #32965 from volzhs/richtextlabel-scroll-active

Fix scrolling RichTextLabel with scroll_active=false
This commit is contained in:
Rémi Verschelde 2019-10-22 20:39:12 +02:00 committed by GitHub
commit b365dc3441
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -859,7 +859,7 @@ int RichTextLabel::_process_line(ItemFrame *p_frame, const Vector2 &p_ofs, int &
void RichTextLabel::_scroll_changed(double) {
if (updating_scroll)
if (updating_scroll || !scroll_active)
return;
if (scroll_follow && vscroll->get_value() >= (vscroll->get_max() - vscroll->get_page()))