diff options
| author | Arne Dußin | 2021-02-05 10:35:03 +0100 |
|---|---|---|
| committer | Arne Dußin | 2021-02-05 10:35:03 +0100 |
| commit | 6b52a88dad43467ae0ea23e96248e934a995570b (patch) | |
| tree | 1c7dccad68cc56633a88323fa3135a7dbb0898d8 /src/client/gui | |
| parent | fb596a4e3b6dd414241f9525e7efe200949428d6 (diff) | |
| download | graf_karto-6b52a88dad43467ae0ea23e96248e934a995570b.tar.gz graf_karto-6b52a88dad43467ae0ea23e96248e934a995570b.zip | |
Fix the right char not being used on input
Diffstat (limited to 'src/client/gui')
| -rw-r--r-- | src/client/gui/dimension_indicator.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/gui/dimension_indicator.rs b/src/client/gui/dimension_indicator.rs index 7d5fd65..d6af690 100644 --- a/src/client/gui/dimension_indicator.rs +++ b/src/client/gui/dimension_indicator.rs @@ -162,9 +162,7 @@ impl DimensionIndicator { match key { // Add a decimal point to the dimension if possible. '.' => { - println!("Adding dec point?"); if !edited_dim.contains('.') { - println!("Adding dec point!"); edited_dim.push('.'); } // Nothing changed here, since there is an implicit .0 at the end. |
