diff options
Diffstat (limited to 'src/widgets/logview.rs')
| -rw-r--r-- | src/widgets/logview.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/widgets/logview.rs b/src/widgets/logview.rs index 5d30b17..4b80d7c 100644 --- a/src/widgets/logview.rs +++ b/src/widgets/logview.rs @@ -1,4 +1,4 @@ -use ratatui::{crossterm::event::KeyEvent, style::{Style, Stylize}, text::ToSpan, widgets::Widget}; +use ratatui::{crossterm::event::KeyEvent, text::ToSpan, widgets::Widget}; use crate::lua::iobuffer::iobuffer; @@ -12,7 +12,7 @@ pub struct LogView { impl LogView { pub fn new() -> Self { Self { - bar: StatusBar::new().left(" Log ").left_style(Style::default().on_magenta()), + bar: StatusBar::new(), } } |