From 3854389156f8839edbb026b6e92fb0d53d191926 Mon Sep 17 00:00:00 2001 From: conankzhang Date: Thu, 31 Oct 2019 01:01:54 -0700 Subject: [PATCH] Fix a constant name typo for GridContainer when creating an editor theme. --- editor/editor_themes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index a49c3eac736..f05c7709d42 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -1089,7 +1089,7 @@ Ref create_editor_theme(const Ref p_theme) { theme->set_icon("port", "GraphNode", theme->get_icon("GuiGraphNodePort", "EditorIcons")); // GridContainer - theme->set_constant("vseperation", "GridContainer", (extra_spacing + default_margin_size) * EDSCALE); + theme->set_constant("vseparation", "GridContainer", (extra_spacing + default_margin_size) * EDSCALE); // FileDialog theme->set_icon("folder", "FileDialog", theme->get_icon("Folder", "EditorIcons"));