Hey, I'm emitting some values via state flow, and one of the windows in my multi-window app collects that state in order to show information. Whenever a new value is emitted, the window containing the composable that collects the flow takes focus. I didn't configure this behavior, and I'm struggling to find how to prevent it. When I search Google I just get a lot of results about Jetpack Compose and text fields taking focus.
To be clear, I need the window to be up to date, as it will still be visible beside the focused window, I just don't want focus to change when something is emitted/collected via state flow. How can I achieve this?