Hello,
my suggestion is to add some feature to quickly move to the next or previous image in the Picture Viewer mode.
It would be useful for example on MTP-devices while thumbnails are not visible and you need to look through your photos.
At the moment I've got a simple AutoHotkey script for this purpose:
; Ctrl-Alt-Up shortcut for Multi Commander file viewing
^!up::
send {esc}
send {up}
send {F1}
return
; Ctrl-Alt-Down shortcut for Multi Commander file viewing
^!down::
send {esc}
send {down}
send {F1}
return
It contains two shortcuts: "Ctrl+Alt+Up" and "Ctrl+Alt+Down", each of them causes three actions:
- press the Esc button to close previous viewer;
- go to the next/previous file in the list by pressing up/down arrow;
- press the F1 button to view the current file.