diff --git a/effects/magnifier/magnifier.cpp b/effects/magnifier/magnifier.cpp index 22b9994a87..ad8d51a155 100644 --- a/effects/magnifier/magnifier.cpp +++ b/effects/magnifier/magnifier.cpp @@ -266,7 +266,7 @@ void MagnifierEffect::zoomIn() void MagnifierEffect::zoomOut() { target_zoom /= 1.2; - if (target_zoom < 1) { + if (target_zoom <= 1) { target_zoom = 1; if (polling) { polling = false;