Lines
100 %
Functions
50 %
Branches
//! Inherent intent handling for `ReportsTab`.
//!
//! Drawing stays on the inherent `draw(frame, area)` in `tabs::reports`; the
//! reports tab consumes no intents (it is driven via the command palette), so
//! `handle` always ignores.
use crate::event::Intent;
use crate::tabs::reports::ReportsTab;
use crate::view::{DrawCtx, Handled};
impl ReportsTab {
pub fn handle(&mut self, _intent: Intent, _ctx: &DrawCtx) -> Handled {
Handled::Ignored
}