Commit b0d02b3c authored by Paul Olav Tvete's avatar Paul Olav Tvete Committed by Pier Luigi Fiorini
Browse files

Fix the control key


Let Ctrl+A cause a key event with text Ctrl+A (0x01), like we do on
the other platforms. Previously we would use 'A', which would confuse
some applications.

Task-number: QTBUG-50398
Change-Id: Ie3def4bd9c96e538b2572b88fae029d347e08814
Reviewed-by: default avatarPier Luigi Fiorini <pierluigi.fiorini@gmail.com>
Showing with 7 additions and 0 deletions
...@@ -645,6 +645,13 @@ void QWaylandInputDevice::Keyboard::keyboard_key(uint32_t serial, uint32_t time, ...@@ -645,6 +645,13 @@ void QWaylandInputDevice::Keyboard::keyboard_key(uint32_t serial, uint32_t time,
qtkey = QWaylandXkb::keysymToQtKey(sym, modifiers, text); qtkey = QWaylandXkb::keysymToQtKey(sym, modifiers, text);
// Map control + letter to proper text
if (utf32 >= 'A' && utf32 <= '~' && (modifiers & Qt::ControlModifier)) {
utf32 &= ~0x60;
text = QString::fromUcs4(&utf32, 1);
}
QWindowSystemInterface::handleExtendedKeyEvent(window->window(), QWindowSystemInterface::handleExtendedKeyEvent(window->window(),
time, type, qtkey, time, type, qtkey,
modifiers, modifiers,
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment