From 97c563a5adb02860b234092c07a95572db64aef3 Mon Sep 17 00:00:00 2001 From: unspeaker Date: Thu, 23 Oct 2025 05:43:40 +0300 Subject: [PATCH] fix some errors --- app/tek_cfg.rs | 3 +-- app/tek_mode.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/app/tek_cfg.rs b/app/tek_cfg.rs index 6ef37c00..ee323bb6 100644 --- a/app/tek_cfg.rs +++ b/app/tek_cfg.rs @@ -1,5 +1,4 @@ -pub(self) use ::{ -}; +use crate::*; /// Configuration. /// diff --git a/app/tek_mode.rs b/app/tek_mode.rs index ea8e219f..f304b517 100644 --- a/app/tek_mode.rs +++ b/app/tek_mode.rs @@ -14,7 +14,7 @@ pub struct Mode { pub modes: Modes, } -impl Draw for Mode { +impl Draw for Mode { fn draw (&self, to: &mut TuiOut) { self.content().draw(to) }