diff options
author | kobewi <kobewi4e@gmail.com> | 2022-04-10 20:52:55 +0200 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2022-09-06 22:13:06 +0200 |
commit | b218727599b956384c4c77446535737cbd415173 (patch) | |
tree | 754cc6e7e0459151f11357948aaca6281727ce80 /editor/plugins | |
parent | 0f62e357e0868ce7e7f822379027d86dd927dbca (diff) |
Rename raise() to move_to_front()
Diffstat (limited to 'editor/plugins')
-rw-r--r-- | editor/plugins/asset_library_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/asset_library_editor_plugin.cpp b/editor/plugins/asset_library_editor_plugin.cpp index 6bc443039f..4434bcd765 100644 --- a/editor/plugins/asset_library_editor_plugin.cpp +++ b/editor/plugins/asset_library_editor_plugin.cpp @@ -577,7 +577,7 @@ void EditorAssetLibrary::_notification(int p_what) { switch (p_what) { case NOTIFICATION_READY: { add_theme_style_override("panel", get_theme_stylebox(SNAME("bg"), SNAME("AssetLib"))); - error_label->raise(); + error_label->move_to_front(); } break; case NOTIFICATION_ENTER_TREE: |