You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Improve plugin dialog UX
This commit is contained in:
@@ -200,12 +200,9 @@ EditorPluginSettings::EditorPluginSettings() {
|
||||
l->set_theme_type_variation("HeaderSmall");
|
||||
title_hb->add_child(l);
|
||||
title_hb->add_spacer();
|
||||
create_plugin = memnew(Button(TTR("Create")));
|
||||
Button *create_plugin = memnew(Button(TTR("Create New Plugin")));
|
||||
create_plugin->connect("pressed", callable_mp(this, &EditorPluginSettings::_create_clicked));
|
||||
title_hb->add_child(create_plugin);
|
||||
update_list = memnew(Button(TTR("Update")));
|
||||
update_list->connect("pressed", callable_mp(this, &EditorPluginSettings::update_plugins));
|
||||
title_hb->add_child(update_list);
|
||||
add_child(title_hb);
|
||||
|
||||
plugin_list = memnew(Tree);
|
||||
|
||||
Reference in New Issue
Block a user