1
0
Fork 0
forked from wry/wry

tree: activate workspace on click

This commit is contained in:
Julian Orth 2022-05-17 18:58:30 +02:00
parent 70cc24107b
commit 858e777f5a
7 changed files with 127 additions and 13 deletions

View file

@ -43,6 +43,7 @@ mod t0014_container_scroll_focus;
mod t0015_scroll_partial;
mod t0016_scroll_ws;
mod t0017_remove_unused_ws;
mod t0018_click_to_active_ws;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -78,5 +79,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0015_scroll_partial,
t0016_scroll_ws,
t0017_remove_unused_ws,
t0018_click_to_active_ws,
}
}