1
0
Fork 0
forked from wry/wry

tree: ensure that node is marked active after un-fullscreening

This commit is contained in:
Julian Orth 2022-05-04 16:33:28 +02:00
parent 23f1aa5a31
commit 8c3106f631
5 changed files with 58 additions and 14 deletions

View file

@ -35,6 +35,7 @@ mod t0006_region;
mod t0007_subsurface;
mod t0008_map_focus;
mod t0009_tab_focus;
mod t0010_fullscreen_focus;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -62,5 +63,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0007_subsurface,
t0008_map_focus,
t0009_tab_focus,
t0010_fullscreen_focus,
}
}