mirror of
https://github.com/godotengine/godot.git
synced 2025-10-31 21:51:22 +00:00
Allow to set custom feature tags for testing
This commit is contained in:
parent
dfe226b933
commit
1b2c7bfe77
5 changed files with 179 additions and 84 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue