Fix the compilation error (#7328)

Follow-up of https://github.com/zed-industries/zed/pull/7326

Release Notes:

- N/A
This commit is contained in:
Kirill Bulatov
2024-02-03 18:52:03 +02:00
committed by GitHub
parent 1ab0af2fa3
commit c9a53b63a7
+1 -1
View File
@@ -666,7 +666,7 @@ impl AppContext {
.values()
.filter_map(|window| {
let window = window.as_ref()?;
(window.dirty || window.focus_invalidated).then_some(window.handle)
window.dirty.then_some(window.handle)
})
.collect::<Vec<_>>()
{