Update window edited status when pane item is removed
This commit is contained in:
parent
2dae0ddcdb
commit
a21dbdd0d6
4 changed files with 11 additions and 3 deletions
|
@ -22,7 +22,7 @@ use smallvec::SmallVec;
|
|||
use smol::prelude::*;
|
||||
use std::{
|
||||
any::{type_name, Any, TypeId},
|
||||
cell::{RefCell, RefMut},
|
||||
cell::RefCell,
|
||||
collections::{hash_map::Entry, BTreeMap, HashMap, HashSet, VecDeque},
|
||||
fmt::{self, Debug},
|
||||
hash::{Hash, Hasher},
|
||||
|
@ -567,8 +567,8 @@ impl TestAppContext {
|
|||
.assert_dropped(handle.id())
|
||||
}
|
||||
|
||||
fn window_mut(&self, window_id: usize) -> RefMut<platform::test::Window> {
|
||||
RefMut::map(self.cx.borrow_mut(), |state| {
|
||||
fn window_mut(&self, window_id: usize) -> std::cell::RefMut<platform::test::Window> {
|
||||
std::cell::RefMut::map(self.cx.borrow_mut(), |state| {
|
||||
let (_, window) = state
|
||||
.presenters_and_platform_windows
|
||||
.get_mut(&window_id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue