From 13b0e61d367cd1d2a071d29326a048a0dfe742fd Mon Sep 17 00:00:00 2001 From: lupoDharkael Date: Thu, 17 May 2018 19:01:06 +0200 Subject: [PATCH] Prevent alt+tab from stealing keyboard (#133) --- src/core/controller.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/controller.cpp b/src/core/controller.cpp index 12c83d17..9e01df6b 100644 --- a/src/core/controller.cpp +++ b/src/core/controller.cpp @@ -125,6 +125,7 @@ void Controller::startVisualCapture(const uint id, const QString &forcedSavePath m_captureWindow->showFullScreen(); //m_captureWindow->show(); // Debug #endif + m_captureWindow->grabKeyboard(); } else { emit captureFailed(id); }