diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-10-31 09:51:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-31 09:51:16 +0100 |
commit | aa96481c8fe350d7223304589f1256e2b9ae8e2b (patch) | |
tree | c01ed81f1b7f0d96a850f0fbdb21b984ef6f49ac /editor/editor_themes.cpp | |
parent | 7b708421b33d5873c6872147305a9b09cacdd5ed (diff) | |
parent | 3854389156f8839edbb026b6e92fb0d53d191926 (diff) |
Merge pull request #33196 from conankzhang/fix-theme-typo
Fix a constant name typo for GridContainer when creating an editor theme.
Diffstat (limited to 'editor/editor_themes.cpp')
-rw-r--r-- | editor/editor_themes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_themes.cpp b/editor/editor_themes.cpp index a49c3eac73..f05c7709d4 100644 --- a/editor/editor_themes.cpp +++ b/editor/editor_themes.cpp @@ -1089,7 +1089,7 @@ Ref<Theme> create_editor_theme(const Ref<Theme> 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")); |