Keyboard modifier keys typed as is
Unsolved
Qt for WebAssembly
-
When typing text, the modifier keys are typed as text instead of being applied. For example, if I type "Shift+h" to type a capital H, I will get "ShiftH" instead of "H":
I get the same for most modifier keys:
It happens only on my Windows dev machine, in every browser, not on other machines.
I'm using Qt 6.5.2.Here is my qml file:
import QtQuick import QtQuick.Window import QtQuick.Controls Window { width: 640 height: 480 visible: true title: qsTr("Hello World") TextField { width: parent.width / 2 placeholderText: "Type something..." } }
-
I have started a bug report
https://bugreports.qt.io/browse/QTBUG-116231You can follow or comment there.