summaryrefslogtreecommitdiffstats
path: root/editor/editor_node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r--editor/editor_node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 1f2c07c6a1..a8f8edaae8 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -511,7 +511,7 @@ void EditorNode::_update_theme(bool p_skip_creation) {
DisplayServer::set_early_window_clear_color_override(true, theme->get_color(SNAME("background"), EditorStringName(Editor)));
}
- List<Ref<Theme>> editor_themes;
+ Vector<Ref<Theme>> editor_themes;
editor_themes.push_back(theme);
editor_themes.push_back(ThemeDB::get_singleton()->get_default_theme());
@@ -580,7 +580,7 @@ void EditorNode::update_preview_themes(int p_mode) {
return; // Too early.
}
- List<Ref<Theme>> preview_themes;
+ Vector<Ref<Theme>> preview_themes;
switch (p_mode) {
case CanvasItemEditor::THEME_PREVIEW_PROJECT: