aboutsummaryrefslogtreecommitdiff
path: root/src/gui/mod.rs
diff options
context:
space:
mode:
authorArne Dußin2020-12-28 00:05:01 +0100
committerArne Dußin2020-12-28 00:05:01 +0100
commitf2430645e7b78dcc0b06a59d20b7c0ff36a5f3c2 (patch)
treeb5d5bd02e5de6bcdb34d0052d7675b2644ac377f /src/gui/mod.rs
parent2d2f45df9d47db25ac5a91c8f926a025c3a5dc7a (diff)
downloadgraf_karto-f2430645e7b78dcc0b06a59d20b7c0ff36a5f3c2.tar.gz
graf_karto-f2430645e7b78dcc0b06a59d20b7c0ff36a5f3c2.zip
Add indicator to show where the mouse is pointing
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 a94122e..f8630d7 100644
--- a/src/gui/mod.rs
+++ b/src/gui/mod.rs
@@ -8,7 +8,9 @@
//! called from any point in the program except the main loop, where the user input is polled.
pub mod dimension_indicator;
+pub mod position_indicator;
pub mod tool_sidebar;
pub use self::dimension_indicator::*;
+pub use self::position_indicator::*;
pub use self::tool_sidebar::*;