Allow to set custom feature tags for testing

This commit is contained in:
kobewi 2022-07-27 13:26:29 +02:00
parent dfe226b933
commit 1b2c7bfe77
5 changed files with 179 additions and 84 deletions

View file

@ -96,7 +96,7 @@ DebuggerEditorPlugin::DebuggerEditorPlugin(PopupMenu *p_debug_menu) {
// Multi-instance, start/stop.
debug_menu->add_separator();
debug_menu->add_item(TTR("Run Multiple Instances..."), RUN_MULTIPLE_INSTANCES);
debug_menu->add_item(TTR("Customize Run Instances..."), RUN_MULTIPLE_INSTANCES);
debug_menu->connect("id_pressed", callable_mp(this, &DebuggerEditorPlugin::_menu_option));
run_instances_dialog = memnew(RunInstancesDialog);
@ -186,7 +186,7 @@ void DebuggerEditorPlugin::_menu_option(int p_option) {
} break;
case RUN_MULTIPLE_INSTANCES: {
run_instances_dialog->popup_centered();
run_instances_dialog->popup_dialog();
} break;
}