diff options
| author | Arne Dußin | 2020-12-29 11:12:11 +0100 |
|---|---|---|
| committer | Arne Dußin | 2020-12-31 14:04:15 +0100 |
| commit | b42ddaa4bf86b782bdbc619f7d66ded41c909465 (patch) | |
| tree | 709e481bb6d1e620b0e01bb02c7335ea474658ec /src/gui/mod.rs | |
| parent | 2d2f45df9d47db25ac5a91c8f926a025c3a5dc7a (diff) | |
| download | graf_karto-b42ddaa4bf86b782bdbc619f7d66ded41c909465.tar.gz graf_karto-b42ddaa4bf86b782bdbc619f7d66ded41c909465.zip | |
Add snapping module to replace the rigid grid snapping
Diffstat (limited to 'src/gui/mod.rs')
| -rw-r--r-- | src/gui/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/mod.rs b/src/gui/mod.rs index a94122e..c73d243 100644 --- a/src/gui/mod.rs +++ b/src/gui/mod.rs @@ -7,8 +7,10 @@ //! means everything is called top-down from this module. A function in this module should not be //! called from any point in the program except the main loop, where the user input is polled. +pub mod decimal_num_box; pub mod dimension_indicator; pub mod tool_sidebar; +pub use self::decimal_num_box::*; pub use self::dimension_indicator::*; pub use self::tool_sidebar::*; |
