protocolmgr: don't expose the fallback output

This commit is contained in:
Vaxry 2024-10-05 14:40:03 +01:00
parent 46bf87c8d1
commit 6fbfeefc71

View file

@ -86,7 +86,8 @@ CProtocolManager::CProtocolManager() {
// ignore mirrored outputs. I don't think this will ever be hit as mirrors are applied after // ignore mirrored outputs. I don't think this will ever be hit as mirrors are applied after
// this event is emitted iirc. // this event is emitted iirc.
if (M->isMirror()) // also ignore the fallback
if (M->isMirror() || M == g_pCompositor->m_pUnsafeOutput)
return; return;
if (PROTO::outputs.contains(M->szName)) if (PROTO::outputs.contains(M->szName))