fix(ui): add keyboard shortcut hints toggle

Hide shortcut hints in WebUI and allow toggling in native desktop apps.
This commit is contained in:
Shantur Rathore
2026-02-13 23:44:28 +00:00
parent e9f281a69d
commit c7195469bd
22 changed files with 120 additions and 15 deletions

View File

@@ -8,7 +8,7 @@ interface HintRowProps {
const HintRow: Component<HintRowProps> = (props) => {
return (
<span aria-hidden={props.ariaHidden} class={`text-xs text-muted ${props.class || ""}`}>
<span aria-hidden={props.ariaHidden} class={`keyboard-hints text-xs text-muted ${props.class || ""}`}>
{props.children}
</span>
)