diff options
| author | Max Pernklau | 2020-12-29 10:50:31 +0100 |
|---|---|---|
| committer | GitHub | 2020-12-29 10:50:31 +0100 |
| commit | 9b5762cf3716503819e2cf06f3c335bbfd3b0a3c (patch) | |
| tree | b5d5bd02e5de6bcdb34d0052d7675b2644ac377f /src/gui/mod.rs | |
| parent | 2d2f45df9d47db25ac5a91c8f926a025c3a5dc7a (diff) | |
| parent | f2430645e7b78dcc0b06a59d20b7c0ff36a5f3c2 (diff) | |
| download | graf_karto-9b5762cf3716503819e2cf06f3c335bbfd3b0a3c.tar.gz graf_karto-9b5762cf3716503819e2cf06f3c335bbfd3b0a3c.zip | |
Merge pull request #26 from LordSentox/position-indicator
Add indicator to show where the mouse is pointing
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..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::*; |
