summaryrefslogtreecommitdiff
path: root/src/widgets/logview.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/widgets/logview.rs')
-rw-r--r--src/widgets/logview.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/widgets/logview.rs b/src/widgets/logview.rs
index 35c7bed..5d30b17 100644
--- a/src/widgets/logview.rs
+++ b/src/widgets/logview.rs
@@ -1,4 +1,4 @@
-use ratatui::{style::{Style, Stylize}, text::ToSpan, widgets::Widget};
+use ratatui::{crossterm::event::KeyEvent, style::{Style, Stylize}, text::ToSpan, widgets::Widget};
use crate::lua::iobuffer::iobuffer;
@@ -15,6 +15,8 @@ impl LogView {
bar: StatusBar::new().left(" Log ").left_style(Style::default().on_magenta()),
}
}
+
+ pub fn handle_key_event(&mut self, _event: KeyEvent) {}
}
impl Widget for &mut LogView {