Delete unused pane::State struct

This commit is contained in:
Antonio Scandurra 2022-01-17 15:27:24 +01:00
parent c3b1530ce2
commit cd0d1d3340

View file

@ -57,17 +57,6 @@ pub enum Event {
const MAX_TAB_TITLE_LEN: usize = 24;
#[derive(Debug, Eq, PartialEq)]
pub struct State {
pub tabs: Vec<TabState>,
}
#[derive(Debug, Eq, PartialEq)]
pub struct TabState {
pub title: String,
pub active: bool,
}
pub struct Pane {
item_views: Vec<(usize, Box<dyn ItemViewHandle>)>,
active_item: usize,