mirror of
https://github.com/godotengine/godot.git
synced 2024-12-03 09:52:18 +08:00
Fix regression on scrollbar raising in ScrollContainer
This commit is contained in:
parent
083f68ebf4
commit
db8c4c2a22
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user