default debug action fixes: UITestScene now uses the same grave hotkey to start REPL

This commit is contained in:
John McCardle 2024-03-08 22:25:48 -05:00
commit 9eb9562b9f
2 changed files with 7 additions and 2 deletions

View file

@ -10,7 +10,7 @@ PyScene::PyScene(GameEngine* g) : Scene(g)
registerAction(ActionCode::MOUSEWHEEL + ActionCode::WHEEL_DEL, "wheel_up");
registerAction(ActionCode::MOUSEWHEEL + ActionCode::WHEEL_NEG + ActionCode::WHEEL_DEL, "wheel_down");
registerAction(ActionCode::KEY + sf::Keyboard::Escape, "debug_menu");
registerAction(ActionCode::KEY + sf::Keyboard::Grave, "debug_menu");
}
void PyScene::update()