1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Add header theme type variations to labels

This commit is contained in:
kobewi
2021-07-08 15:29:15 +02:00
parent b44b277f6f
commit f4b361dd15
18 changed files with 94 additions and 14 deletions

View File

@@ -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")));