PaoloM wrote:
 | Harlequin wrote:Still, the toolbar should have options to turn off keyboard shortcuts. Even better to change them, especially since Shift-R is quite a silly shortcut to use. |
But it's not Shift-R, it's Ctrl-Shift-R.
Symptom: Pressing Shift-R cause the keycode for Ctrl-Shift-R to be sent.
Cause: Ctrl key is stuck.
Resolution: Clean your keyboard.
No - it'll be a stupid design of the toolbar, which rather than looking at the keycode and using the ctrl, alt and shift flags sent with the code, it'll be registering KeyDown and KeyUp for the keys and looking for Ctrl (and storing this as a bool).
If for some reason the Ctrl Key-up is missed, for instance if the focus changes away from the toolbar and into something else while the Ctrl is down, then all subseqent key presses will register as if the Ctrl is still down so far as the toolbar is concerned.
This can of course be fixed by pressing both Ctrl buttons down while the toolbar has focus which will overwrite the bool and the keyup of the ctrl will cause the bool to be unstuck, allowing normal use again.