summaryrefslogtreecommitdiffstats
path: root/editor/dependency_editor.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2021-07-08 15:29:15 +0200
committerkobewi <kobewi4e@gmail.com>2021-07-13 15:42:09 +0200
commitf4b361dd1536edaa902d59759addbf46e25e3505 (patch)
tree4991068a17c1367cd60c4fb263970ed35230863b /editor/dependency_editor.cpp
parentb44b277f6f2f22124c47d63551591056791474c0 (diff)
downloadredot-engine-f4b361dd1536edaa902d59759addbf46e25e3505.tar.gz
Add header theme type variations to labels
Diffstat (limited to 'editor/dependency_editor.cpp')
-rw-r--r--editor/dependency_editor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/dependency_editor.cpp b/editor/dependency_editor.cpp
index ef571e5c7a..e26344f3ec 100644
--- a/editor/dependency_editor.cpp
+++ b/editor/dependency_editor.cpp
@@ -236,6 +236,8 @@ DependencyEditor::DependencyEditor() {
HBoxContainer *hbc = memnew(HBoxContainer);
Label *label = memnew(Label(TTR("Dependencies:")));
+ label->set_theme_type_variation("HeaderSmall");
+
hbc->add_child(label);
hbc->add_spacer();
fixdeps = memnew(Button(TTR("Fix Broken")));