1
0
Fork 0
forked from wry/wry

tree: focus container mono child after scroll

This commit is contained in:
Julian Orth 2022-05-07 14:24:06 +02:00
parent 3abd72b330
commit fca7c7e1d2
9 changed files with 140 additions and 9 deletions

View file

@ -39,6 +39,7 @@ mod t0010_fullscreen_focus;
mod t0011_set_keymap;
mod t0012_subsurface_focus;
mod t0013_graphics_initialized;
mod t0014_container_scroll_focus;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -70,5 +71,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0011_set_keymap,
t0012_subsurface_focus,
t0013_graphics_initialized,
t0014_container_scroll_focus,
}
}