fix some errors
Some checks failed
/ build (push) Has been cancelled

This commit is contained in:
🪞👃🪞 2025-10-23 05:43:40 +03:00
parent f38db87b17
commit 97c563a5ad
2 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,4 @@
pub(self) use ::{ use crate::*;
};
/// Configuration. /// Configuration.
/// ///

View file

@ -14,7 +14,7 @@ pub struct Mode<D: Dsl + Ord> {
pub modes: Modes, pub modes: Modes,
} }
impl Draw<TuiOut> for Mode { impl<D: Dsl + Ord> Draw<TuiOut> for Mode<D> {
fn draw (&self, to: &mut TuiOut) { fn draw (&self, to: &mut TuiOut) {
self.content().draw(to) self.content().draw(to)
} }