diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 29cdc15a9..29effcf24 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -588,7 +588,7 @@ void GMainWindow::InitializeHotkeys() { }); connect(hotkey_registry.GetHotkey(main_window, QStringLiteral("Capture Screenshot"), this), &QShortcut::activated, this, [&] { - if (emu_thread->IsRunning()) { + if (ui->action_Capture_Screenshot->isEnabled()) { OnCaptureScreenshot(); } });