diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-07 11:46:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-07 11:46:25 +0100 |
commit | b02460266065413957eae3de34f9aef49c5a72f1 (patch) | |
tree | 42e73d207d13fcd2053557ca9b9ae38c2fe37ead /editor/filesystem_dock.cpp | |
parent | 6f425242dcce95ae9993dca017f91e7bab2060d3 (diff) | |
parent | a988fad9a092053434545c32afae91ccbdfbe792 (diff) |
Merge pull request #57725 from jmb462/missing-sname-theme-setters
Diffstat (limited to 'editor/filesystem_dock.cpp')
-rw-r--r-- | editor/filesystem_dock.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index a038da4c18..324aed5d02 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -2834,7 +2834,7 @@ FileSystemDock::FileSystemDock(EditorNode *p_editor) { add_child(top_vbc); HBoxContainer *toolbar_hbc = memnew(HBoxContainer); - toolbar_hbc->add_theme_constant_override("separation", 0); + toolbar_hbc->add_theme_constant_override(SNAME("separation"), 0); top_vbc->add_child(toolbar_hbc); button_hist_prev = memnew(Button); @@ -2873,7 +2873,7 @@ FileSystemDock::FileSystemDock(EditorNode *p_editor) { toolbar_hbc->add_child(button_toggle_display_mode); toolbar2_hbc = memnew(HBoxContainer); - toolbar2_hbc->add_theme_constant_override("separation", 0); + toolbar2_hbc->add_theme_constant_override(SNAME("separation"), 0); top_vbc->add_child(toolbar2_hbc); tree_search_box = memnew(LineEdit); |