From 756b3a6afc6b6670c2c874adeb9c10997a690c2c Mon Sep 17 00:00:00 2001 From: "Pierre-Loup A. Griffais" Date: Sat, 8 May 2021 01:47:50 -0700 Subject: [PATCH] steamcompmgr: streaming_client is kind of like an overlay but not really --- src/steamcompmgr.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/steamcompmgr.cpp b/src/steamcompmgr.cpp index 6ca8f4f..98a31ec 100644 --- a/src/steamcompmgr.cpp +++ b/src/steamcompmgr.cpp @@ -1415,7 +1415,8 @@ determine_and_apply_focus (Display *dpy, MouseCursor *cursor) continue; } - if ( w->a.map_state == IsViewable && w->a.c_class == InputOutput && w->isOverlay == False && w->opacity > TRANSLUCENT ) + if ( w->a.map_state == IsViewable && w->a.c_class == InputOutput && w->isOverlay == False && + (w->opacity > TRANSLUCENT || w->isSteamStreamingClient == True ) ) { vecPossibleFocusWindows.push_back( w ); }