This also fix old issues: * Top border is only the top border of the selected area (and not he top border of each cell in the area) * Same for bottom, left and right borders Factored out all the border related issues to a new file
16 lines
215 B
Rust
16 lines
215 B
Rust
#![deny(missing_docs)]
|
|
|
|
mod border;
|
|
mod border_utils;
|
|
mod common;
|
|
mod history;
|
|
mod ui;
|
|
|
|
pub use common::UserModel;
|
|
|
|
#[cfg(test)]
|
|
pub use ui::SelectedView;
|
|
|
|
pub use common::BorderArea;
|
|
pub use common::ClipboardData;
|