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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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<_>>()
{