Merge pull request #35138 from YeldhamDev/defer_scrollbar_raising

Fix regression on scrollbar raising in ScrollContainer
This commit is contained in:
Rémi Verschelde 2020-01-15 00:25:29 +01:00 committed by GitHub
commit eb382f1bdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -243,8 +243,8 @@ void ScrollContainer::_notification(int p_what) {
if (p_what == NOTIFICATION_ENTER_TREE || p_what == NOTIFICATION_THEME_CHANGED) {
h_scroll->raise();
v_scroll->raise();
h_scroll->call_deferred("raise");
v_scroll->call_deferred("raise");
};
if (p_what == NOTIFICATION_READY) {