Merge pull request #35180 from timothyqiu/scroll-container-min-size

Updates ScrollContainer min size when toggle scrollbars
This commit is contained in:
Rémi Verschelde 2020-01-16 07:53:02 +01:00 committed by GitHub
commit 2e66de0da9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -452,8 +452,12 @@ void ScrollContainer::_scroll_moved(float) {
};
void ScrollContainer::set_enable_h_scroll(bool p_enable) {
if (scroll_h == p_enable) {
return;
}
scroll_h = p_enable;
minimum_size_changed();
queue_sort();
}
@ -463,8 +467,12 @@ bool ScrollContainer::is_h_scroll_enabled() const {
}
void ScrollContainer::set_enable_v_scroll(bool p_enable) {
if (scroll_v == p_enable) {
return;
}
scroll_v = p_enable;
minimum_size_changed();
queue_sort();
}