diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/applets/qt_web_browser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/applets/qt_web_browser.cpp b/src/yuzu/applets/qt_web_browser.cpp index cc1a42f74..652d99570 100644 --- a/src/yuzu/applets/qt_web_browser.cpp +++ b/src/yuzu/applets/qt_web_browser.cpp | |||
| @@ -210,7 +210,7 @@ void QtNXWebEngineView::HandleWindowFooterButtonPressedOnce() { | |||
| 210 | if (input_interpreter->IsButtonPressedOnce(button)) { | 210 | if (input_interpreter->IsButtonPressedOnce(button)) { |
| 211 | page()->runJavaScript( | 211 | page()->runJavaScript( |
| 212 | QStringLiteral("yuzu_key_callbacks[%1] == null;").arg(static_cast<u8>(button)), | 212 | QStringLiteral("yuzu_key_callbacks[%1] == null;").arg(static_cast<u8>(button)), |
| 213 | [&](const QVariant& variant) { | 213 | [this, button](const QVariant& variant) { |
| 214 | if (variant.toBool()) { | 214 | if (variant.toBool()) { |
| 215 | switch (button) { | 215 | switch (button) { |
| 216 | case HIDButton::A: | 216 | case HIDButton::A: |