1
0
Fork 0
forked from wry/wry

wayland: implement virtual-keyboard

This commit is contained in:
Julian Orth 2024-04-12 19:58:42 +02:00
parent 826f40adca
commit 6c0e3a4fff
20 changed files with 689 additions and 14 deletions

View file

@ -71,6 +71,7 @@ mod t0036_idle;
mod t0037_toplevel_drag;
mod t0038_subsurface_parent_state;
mod t0039_alpha_modifier;
mod t0040_virtual_keyboard;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -129,5 +130,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0037_toplevel_drag,
t0038_subsurface_parent_state,
t0039_alpha_modifier,
t0040_virtual_keyboard,
}
}