aboutsummaryrefslogtreecommitdiff
path: root/src/gui/mod.rs
diff options
context:
space:
mode:
authorArne Dußin2021-01-06 22:50:14 +0100
committerGitHub2021-01-06 22:50:14 +0100
commitd8123704ea4fe4f1fb677db31ecac53c9c40096e (patch)
treee0a365444784efaaeb1eea6373b34559b6d57fbc /src/gui/mod.rs
parent30b23db9e86fdf72a4e7de72213df274ce19123e (diff)
parentfa1afb6be3ba2d521eb0791edc0bb8e631a85327 (diff)
downloadgraf_karto-d8123704ea4fe4f1fb677db31ecac53c9c40096e.tar.gz
graf_karto-d8123704ea4fe4f1fb677db31ecac53c9c40096e.zip
Merge pull request #27 from LordSentox/snapping
Add snapping module to replace the rigid grid snapping
Diffstat (limited to 'src/gui/mod.rs')
-rw-r--r--src/gui/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/mod.rs b/src/gui/mod.rs
index f8630d7..62173ec 100644
--- a/src/gui/mod.rs
+++ b/src/gui/mod.rs
@@ -7,10 +7,12 @@
//! 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 position_indicator;
pub mod tool_sidebar;
+pub use self::decimal_num_box::*;
pub use self::dimension_indicator::*;
pub use self::position_indicator::*;
pub use self::tool_sidebar::*;