From 17d0d696be10dfe1eada0924480ba6d027dcef70 Mon Sep 17 00:00:00 2001 From: Dominick DiMaggio Date: Sun, 26 Oct 2025 14:57:20 -0400 Subject: [PATCH] screencopy: wait longer to re-enable DS (#12135) --- src/protocols/Screencopy.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/protocols/Screencopy.cpp b/src/protocols/Screencopy.cpp index 805386237..687c4045a 100644 --- a/src/protocols/Screencopy.cpp +++ b/src/protocols/Screencopy.cpp @@ -513,6 +513,10 @@ void CScreencopyProtocol::destroyResource(CScreencopyFrame* frame) { void CScreencopyProtocol::onOutputCommit(PHLMONITOR pMonitor) { if (m_framesAwaitingWrite.empty()) { + for (auto client : m_clients) { + if (client->m_framesInLastHalfSecond > 0) + return; + } g_pHyprRenderer->m_directScanoutBlocked = false; return; // nothing to share }