Remove unnecessary focus_invalidated
field (#7320)
I believe at some point this was used for tests but it doesn't seem necessary anymore. Release Notes: - N/A
This commit is contained in:
parent
c906fd232d
commit
54aecd21ec
2 changed files with 1 additions and 18 deletions
|
@ -658,7 +658,7 @@ impl AppContext {
|
|||
.values()
|
||||
.filter_map(|window| {
|
||||
let window = window.as_ref()?;
|
||||
(window.dirty.get() || window.focus_invalidated).then_some(window.handle)
|
||||
window.dirty.get().then_some(window.handle)
|
||||
})
|
||||
.collect::<Vec<_>>()
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue