Took shift and alt requirements from T key for demo data

This commit is contained in:
PeekabooSteam
2023-10-15 10:59:39 +01:00
parent 5bf62f4b93
commit 6f9722143e

View File

@@ -254,14 +254,14 @@ export class OlympusApp {
const shortcutManager = this.getShortcutManager(); const shortcutManager = this.getShortcutManager();
shortcutManager.addKeyboardShortcut("toggleDemo", { shortcutManager.addKeyboardShortcut("toggleDemo", {
"altKey": true, "altKey": false,
"callback": () => { "callback": () => {
this.getServerManager().toggleDemoEnabled(); this.getServerManager().toggleDemoEnabled();
}, },
"code": "KeyT", "code": "KeyT",
"context": "olympus", "context": "olympus",
"ctrlKey": false, "ctrlKey": false,
"shiftKey": true "shiftKey": false
}).addKeyboardShortcut("togglePause", { }).addKeyboardShortcut("togglePause", {
"altKey": false, "altKey": false,
"callback": () => { "callback": () => {