Add header theme type variations to labels
This commit is contained in:
@ -192,7 +192,9 @@ EditorPluginSettings::EditorPluginSettings() {
|
||||
add_child(plugin_config_dialog);
|
||||
|
||||
HBoxContainer *title_hb = memnew(HBoxContainer);
|
||||
title_hb->add_child(memnew(Label(TTR("Installed Plugins:"))));
|
||||
Label *l = memnew(Label(TTR("Installed Plugins:")));
|
||||
l->set_theme_type_variation("HeaderSmall");
|
||||
title_hb->add_child(l);
|
||||
title_hb->add_spacer();
|
||||
create_plugin = memnew(Button(TTR("Create")));
|
||||
create_plugin->connect("pressed", callable_mp(this, &EditorPluginSettings::_create_clicked));
|
||||
|
||||
Reference in New Issue
Block a user