From c3d69596690bde09aa35f860eced736f57858da8 Mon Sep 17 00:00:00 2001 From: Joshua Ashton Date: Tue, 16 Aug 2022 23:21:33 +0000 Subject: [PATCH] steamcompmgr: Add workaround for Antichamber Has a splash screen that ends up being treat as a dropdown. Workaround this until we hook up the Proton window style deduction. --- src/steamcompmgr.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/steamcompmgr.cpp b/src/steamcompmgr.cpp index 7bee403..cd89308 100644 --- a/src/steamcompmgr.cpp +++ b/src/steamcompmgr.cpp @@ -2027,6 +2027,10 @@ win_maybe_a_dropdown( win *w ) if ( w->appID == 230410 && w->maybe_a_dropdown && w->transientFor && ( w->skipPager || w->skipTaskbar ) ) return !win_is_useless( w ); + // Work around Antichamber splash screen until we hook up + // the Proton window style deduction. + if ( w->appID == 219890 ) + return false; // Josh: // The logic here is as follows. The window will be treated as a dropdown if: