diff --git a/src/plugins/platforms/wasm/qwasmwindow.cpp b/src/plugins/platforms/wasm/qwasmwindow.cpp index 85a2e252f11..b8b76cafe12 100644 --- a/src/plugins/platforms/wasm/qwasmwindow.cpp +++ b/src/plugins/platforms/wasm/qwasmwindow.cpp @@ -520,7 +520,7 @@ void QWasmWindow::handleKeyForInputContextEvent(const emscripten::val &event) return; } else if (keyString.size() != 1) { if (!wasmInput->preeditString().isEmpty()) { - if (keyString == "Process" || keyString == "Backspace") { + if (keyString == "Process" || keyString == "Backspace" || keyString == "Dead") { // processed by InputContext // "Process" should be handled by InputContext but // QWasmInputContext's function is incomplete now