1
//! Inherent intent handling for `ReportsTab`.
2
//!
3
//! Drawing stays on the inherent `draw(frame, area)` in `tabs::reports`; the
4
//! reports tab consumes no intents (it is driven via the command palette), so
5
//! `handle` always ignores.
6

            
7
use crate::event::Intent;
8
use crate::tabs::reports::ReportsTab;
9
use crate::view::{DrawCtx, Handled};
10

            
11
impl ReportsTab {
12
30
    pub fn handle(&mut self, _intent: Intent, _ctx: &DrawCtx) -> Handled {
13
30
        Handled::Ignored
14
30
    }
15
}