diff --git a/shared/qpa/oxideeventhandler.cpp b/shared/qpa/oxideeventhandler.cpp index 35d8bd5d4..0c13c0398 100644 --- a/shared/qpa/oxideeventhandler.cpp +++ b/shared/qpa/oxideeventhandler.cpp @@ -538,14 +538,13 @@ void OxideEventHandler::processKeyboardEvent( toQtModifiers(keyboardData->m_modifiers) ); } - qDebug() << toQtModifiers(keyboardData->m_modifiers) << toQtModifiers(it->special) << it->special; QEvent::Type type = pressed ? QEvent::KeyPress : QEvent::KeyRelease; QString text = unicode != 0xffff ? QString(QChar(unicode)) : QString(); QWindowSystemInterface::handleExtendedKeyEvent( nullptr, type, qtcode, - qtmods, + toQtModifiers(keyboardData->m_modifiers), keycode + 8, 0, int(modifiers),