Compare commits

...

1 Commits

Author SHA1 Message Date
Conrad Irwin
d7a9cccc54 Maybe fix thorsens bug 2024-06-25 09:54:43 -06:00

View File

@@ -754,6 +754,11 @@ impl Window {
handle
.update(&mut cx, |_, cx| {
cx.window.active.set(active);
// If the window is occluded we may not render it again
// until
if !active {
cx.window.rendered_frame.window_active = false;
}
cx.window
.activation_observers
.clone()