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:
parent
1ab0af2fa3
commit
c9a53b63a7
1 changed files with 1 additions and 1 deletions
|
@ -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<_>>()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue