XnView: MP 1.7.1 - 64 bit
OS: Windows 10 - 64-bit
Shortcut - Uncolored not working
Effect: Pressing Ctrl+Shift+0 does not remove the color of the marker.
To reproduce:
1. Press Ctrl+Shift+1~9 to change the color.
2. Pressing Ctrl+Shift+0 to remove the color.
Actual behaviour (bug): Pressing Ctrl+Shift+0 has no effect.
Expected behaviour: Press Ctrl+Shift+0 to remove the color of the marker.
1.7.1: <shortcut> - <Uncolored> not working
Moderators: XnTriq, helmut, xnview, Dreamer
-
- Posts: 55
- Joined: Thu Nov 05, 2015 9:23 am
- Location: China
1.7.1: <shortcut> - <Uncolored> not working
You do not have the required permissions to view the files attached to this post.
-
- Author of XnView
- Posts: 45062
- Joined: Mon Oct 13, 2003 7:31 am
- Location: France
Re: 1.7.1: <shortcut> - <Uncolored> not working
you don't have an extension or app which use this shortcut?
Pierre.
-
- XnThusiast
- Posts: 2061
- Joined: Sat May 09, 2015 9:37 am
Re: 1.7.1: <shortcut> - <Uncolored> not working
You have to use numbers from top row, not the numbers from Numpad,
because Shift+Numpad combination returns different scancodes (Numpad with disabled NumLock):
On the other hand, I think it would be better if the app treated them equally (and always use Numpad0 notation), eg NumpadIns=Numpad0, etc.
The same can be done to Return=Enter.
because Shift+Numpad combination returns different scancodes (Numpad with disabled NumLock):
Code: Select all
no Shift | w Shift
Numpad0 | NumpadIns
Numpad1 | NumpadEnd
Numpad2 | NumpadDown
Numpad3 | NumpadPgDn
Numpad4 | NumpadLeft
Numpad5 | NumpadClear
Numpad6 | NumpadRight
Numpad7 | NumpadHome
Numpad8 | NumpadUp
Numpad9 | NumpadPgUp
NumpadDot | NumpadDel
The same can be done to Return=Enter.
-
- Posts: 55
- Joined: Thu Nov 05, 2015 9:23 am
- Location: China
-
- Posts: 55
- Joined: Thu Nov 05, 2015 9:23 am
- Location: China
Re: 1.7.1: <shortcut> - <Uncolored> not working
Thanks, I also know a little bit of programming and know that they are different codes. So I tried a variety of combinations, but none of them worked, so I submitted this report.user0 wrote: ↑Mon Jun 03, 2024 2:36 pm You have to use numbers from top row, not the numbers from Numpad,
because Shift+Numpad combination returns different scancodes (Numpad with disabled NumLock):On the other hand, I think it would be better if the app treated them equally (and always use Numpad0 notation), eg NumpadIns=Numpad0, etc.Code: Select all
no Shift | w Shift Numpad0 | NumpadIns Numpad1 | NumpadEnd Numpad2 | NumpadDown Numpad3 | NumpadPgDn Numpad4 | NumpadLeft Numpad5 | NumpadClear Numpad6 | NumpadRight Numpad7 | NumpadHome Numpad8 | NumpadUp Numpad9 | NumpadPgUp NumpadDot | NumpadDel
The same can be done to Return=Enter.
-
- XnThusiast
- Posts: 2061
- Joined: Sat May 09, 2015 9:37 am