aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/transform.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/transform.rs b/src/transform.rs
index b0b0e0a..d074c03 100644
--- a/src/transform.rs
+++ b/src/transform.rs
@@ -116,7 +116,6 @@ impl Transform {
/// Attempts to zoom out a step and return true.
/// If the minimum zoom is reached, this function changes nothing and returns false.
pub fn try_zoom_out(&mut self, mouse_pos_px: Vec2<f32>) -> bool {
- // TODO: Zoom out at mouse pointer position
if self.pixels_per_m > MIN_PIXELS_PER_M {
// Save the absolute mouse position for tethering later
let mouse_pos_m = self.point_px_to_m(mouse_pos_px);