Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion accessibility/keyboardui.js
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,7 @@ function isMac() {
// List of shortcuts to show in the panel, with categories for grouping
function getShortcuts() {
const mod = isMac() ? '⌘' : 'Ctrl';
const pgUpDn = isMac() ? 'Fn + ↑ ↓' : 'PgUp PgDn';
return [
{
label: translate('shortcut_show_hide_help'),
Expand Down Expand Up @@ -627,7 +628,7 @@ function getShortcuts() {
},
{
label: translate('shortcut_transform_3d'),
keys: `↑ ↓ ← → PgUp PgDn`,
keys: `↑ ↓ ← → ${pgUpDn}`,
category: translate('shortcut_category_gizmos'),
},
{
Expand Down
Loading