using Cell directly fixes fullscreen performance

This commit is contained in:
🪞👃🪞 2024-07-06 22:21:09 +03:00
parent d75600188e
commit 6724f3848d
3 changed files with 32 additions and 14 deletions

View file

@ -1,9 +1,10 @@
mod focus; pub use self::focus::*;
mod container; pub use self::container::*;
mod scroll; pub use self::scroll::*;
mod table; pub use self::table::*;
mod lozenge; pub use self::lozenge::*;
pub mod table;
use crate::core::*;
pub trait Modal<T>: Device {