mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 14:12:51 +00:00
PluginConfigDialog: Slight usability changes
- Set focus to the first LineEdit instead of the confirm button. - Default to GDScript rather than whatever language was first registered with the ScriptServer.
This commit is contained in:
parent
8fd6a02d3e
commit
32b9aedd88
@ -120,6 +120,10 @@ void PluginConfigDialog::_notification(int p_what) {
|
||||
connect("confirmed", this, "_on_confirmed");
|
||||
get_cancel()->connect("pressed", this, "_on_cancelled");
|
||||
} break;
|
||||
|
||||
case NOTIFICATION_POST_POPUP: {
|
||||
name_edit->grab_focus();
|
||||
} break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -215,11 +219,15 @@ PluginConfigDialog::PluginConfigDialog() {
|
||||
grid->add_child(script_option_lb);
|
||||
|
||||
script_option_edit = memnew(OptionButton);
|
||||
int default_lang = 0;
|
||||
for (int i = 0; i < ScriptServer::get_language_count(); i++) {
|
||||
ScriptLanguage *lang = ScriptServer::get_language(i);
|
||||
script_option_edit->add_item(lang->get_name());
|
||||
if (lang == GDScriptLanguage::get_singleton()) {
|
||||
default_lang = i;
|
||||
}
|
||||
}
|
||||
script_option_edit->select(0);
|
||||
script_option_edit->select(default_lang);
|
||||
grid->add_child(script_option_edit);
|
||||
|
||||
Label *script_lb = memnew(Label);
|
||||
|
Loading…
Reference in New Issue
Block a user