Files
IronCalc/base/src/user_model/mod.rs
Nicolás Hatcher 6ee450709a FIX: Numerous fixes
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
2025-02-15 09:46:39 +00:00

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;