diff --git a/app/src/components/footer/shortcutHelper.tsx b/app/src/components/footer/shortcutHelper.tsx index aa927c5..405963e 100644 --- a/app/src/components/footer/shortcutHelper.tsx +++ b/app/src/components/footer/shortcutHelper.tsx @@ -30,7 +30,7 @@ import { DuplicateInstanceIcon, PlayIcon, } from "../icons/ShortcutIcons"; -import { CloseIcon } from "../icons/ExportCommonIcons"; +import { CloseIcon, EyeCloseIcon } from "../icons/ExportCommonIcons"; interface ShortcutItem { keys: string[]; @@ -52,6 +52,7 @@ const ShortcutHelper: React.FC = ({ setShowShortcuts, }) => { const shortcuts: ShortcutGroup[] = [ + // Essential { category: "Essential", items: [ @@ -86,13 +87,20 @@ const ShortcutHelper: React.FC = ({ icon: , }, { - keys: ["CTRL", "+", "?"], + keys: ["CTRL", "+", "SHIFT", "+", "?"], name: "Info", description: "Show Shortcut Info", icon: , }, + { + keys: ["L"], + name: "Log", + description: "Show Log list", + icon: , + }, ], }, + // Tools { category: "Tools", items: [ @@ -158,6 +166,7 @@ const ShortcutHelper: React.FC = ({ }, ], }, + // View & Navigation { category: "View & Navigation", items: [ @@ -193,6 +202,7 @@ const ShortcutHelper: React.FC = ({ }, ], }, + // Module Switching { category: "Module Switching", items: [ @@ -222,6 +232,7 @@ const ShortcutHelper: React.FC = ({ }, ], }, + // Selection { category: "Selection", items: [ @@ -251,6 +262,7 @@ const ShortcutHelper: React.FC = ({ }, ], }, + // Simulation { category: "Simulation", items: [ @@ -260,6 +272,12 @@ const ShortcutHelper: React.FC = ({ description: "Play Simulation", icon: , }, + { + keys: ["H"], + name: "Hide Player", + description: "Hide Simulation Player", + icon: , + }, ], }, ];