Metadata
Description
Steps to reproduce:
- Set Windows to "United States-International" keyboard input
- Select "ENG INTL" on the taskbar keyboard input method selector
- If "ENG INTL" is not available, it can be added as follows:
- Open Settings / Time & Language / Language
- Click "English (United States)" under "Preferred languages"
- Click Options
- Click "Add a keyboard"
- Add "United States-International"
- Open Weavly in Chrome
- Run Grid 3 and load a Weavly grid set
- Activate the "Actions" cell
Expected:
- Focus to be set to the first Actions block, and then focus to be moved through the Actions Panel
Actual:
- The tabs to move focus and the space to click work, but focus is not set initially to the first Actions block
Other keyboard shortcuts such as Play, Refresh, and Delete All also do not work.
Comments
-
Simon Bates commented
2021-08-16T10:15:21.584-0400 Windows treats Left Ctrl + Left Alt as "Alt Gr" (Right Alt).
Resources:
- Why Ctrl+Alt shouldn't be used as a shortcut modifier
- "You may have noticed that Windows doesn’t use Ctrl+Alt as a keyboard shortcut anywhere. (Or at least it shouldn’t.) If a chorded modifier is needed, it’s usually Ctrl+Shift. That’s because Ctrl+Alt has special meaning on many keyboards. The combination Ctrl+Alt is also known as AltGr, and it acts as an alternate shift key."
- https://en.wikipedia.org/wiki/AltGr_key#Control_+_Alt_as_a_substitute
- https://support.microsoft.com/en-us/topic/how-to-use-the-united-states-international-keyboard-layout-in-windows-7-in-windows-vista-and-in-windows-xp-e05ce3ed-11f0-8fc2-498e-a214fa6b898f
- https://support.microsoft.com/en-us/topic/keyboard-shortcuts-for-international-characters-108fa0c1-fb8e-4aae-9db1-d60407d13c35
- https://superuser.com/questions/592970/can-i-make-ctrlalt-not-act-like-altgr-on-windows
- https://superuser.com/questions/217082/why-dont-the-google-docs-ctrl-alt-shortcuts-work
Chrome, Left Ctrl + Left Alt + p when in "United States-International" keyboard input method:
- altKey: false
- bubbles: true
- cancelBubble: false
- cancelable: true
- charCode: 0
- code: "KeyP"
- composed: true
- ctrlKey: false
- currentTarget: document
- defaultPrevented: false
- detail: 0
- eventPhase: 3
- isComposing: false
- isTrusted: true
- key: "ö"
- keyCode: 80
- location: 0
- metaKey: false
- path: (4) [body.mixed-theme, html, document, Window]
- repeat: false
- returnValue: true
- shiftKey: false
- sourceCapabilities: InputDeviceCapabilities {firesTouchEvents: false}
- srcElement: body.mixed-theme
- target: body.mixed-theme
- timeStamp: 623606.2000000477
- type: "keydown"
- view: Window {window: Window, self: Window, document: document, name: "", location: Location, …}
- which: 80
Chrome, Left Ctrl + Left Alt + p when in "US" keyboard input method:
- altKey: true
- bubbles: true
- cancelBubble: false
- cancelable: true
- charCode: 0
- code: "KeyP"
- composed: true
- ctrlKey: true
- currentTarget: document
- defaultPrevented: false
- detail: 0
- eventPhase: 3
- isComposing: false
- isTrusted: true
- key: "p"
- keyCode: 80
- location: 0
- metaKey: false
- path: (4) [body.mixed-theme, html, document, Window]
- repeat: false
- returnValue: true
- shiftKey: false
- sourceCapabilities: InputDeviceCapabilities {firesTouchEvents: false}
- srcElement: body.mixed-theme
- target: body.mixed-theme
- timeStamp: 855371.7000000477
- type: "keydown"
- view: Window {window: Window, self: Window, document: document, name: "", location: Location, …}
- which: 80
Testing in Notepad, in "United States-International" keyboard input method:
- Left Alt + p: Plays the Windows bell sound (I'm interpreting this to mean that no menus in the menu bar match "p")
- Left Ctrl + p: Opens the Print dialog box
- Left Ctrl + Left Alt + p: Types an "ö"
- Why Ctrl+Alt shouldn't be used as a shortcut modifier