Details
-
Bug
-
Resolution: Fixed
-
P3: Somewhat important
-
None
-
5.15.0
-
None
-
macOS Catalina 10.15.5 (19F101)
Qt 5.15.0
Xcode 11.3.1
Description
When switching my keyboard layout to "Swiss German" on macOS I can compose ä by typing "a .
When I try to capture the keydown events with javascript:
document.body.onkeydown = function(e){console.log(e.keyCode + " : " + e.key);};
I receive, when I type h"ase, only
"72 : h" "83 : s" "69 : e"
The composed ä is missing from the keydown events.
On Chrome I receive
72 : h 229 : Dead 229 : ä 83 : s 69 : e
I attached a sample project qwebengine_compose.zip which is logging the js keydown events.
Attachments
Issue Links
- resulted from
-
QTBUG-50252 QWebengineView last character is duplicated (korean language)
-
- Closed
-