From e89ff01caf6d4f70c7d31a61aeb0d71ad0505d35 Mon Sep 17 00:00:00 2001 From: blessedcoolant <54517381+blessedcoolant@users.noreply.github.com> Date: Tue, 13 Dec 2022 14:59:20 +1300 Subject: [PATCH] Update Hotkeys Modal Update hotkeys modal to reflect the previous changes to the scale and restore hotkeys and also improve a few other descriptions. --- .../components/HotkeysModal/HotkeysModal.tsx | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/frontend/src/features/system/components/HotkeysModal/HotkeysModal.tsx b/frontend/src/features/system/components/HotkeysModal/HotkeysModal.tsx index 3dc384964e..fae89d5142 100644 --- a/frontend/src/features/system/components/HotkeysModal/HotkeysModal.tsx +++ b/frontend/src/features/system/components/HotkeysModal/HotkeysModal.tsx @@ -93,8 +93,12 @@ export default function HotkeysModal({ children }: HotkeysModalProps) { desc: 'Use all parameters of the current image', hotkey: 'A', }, - { title: 'Restore Faces', desc: 'Restore the current image', hotkey: 'R' }, - { title: 'Upscale', desc: 'Upscale the current image', hotkey: 'U' }, + { + title: 'Restore Faces', + desc: 'Restore the current image', + hotkey: 'Shift+R', + }, + { title: 'Upscale', desc: 'Upscale the current image', hotkey: 'Shift+U' }, { title: 'Show Info', desc: 'Show metadata info of the current image', @@ -254,17 +258,17 @@ export default function HotkeysModal({ children }: HotkeysModalProps) { hotkey: 'R', }, { - title: 'Previous Image', + title: 'Previous Staging Image', desc: 'Previous Staging Area Image', hotkey: 'Arrow Left', }, { - title: 'Next Image', + title: 'Next Staging Image', desc: 'Next Staging Area Image', hotkey: 'Arrow Right', }, { - title: 'Accept Image', + title: 'Accept Staging Image', desc: 'Accept Current Staging Area Image', hotkey: 'Enter', },