diff --git a/js/ui/magnifier.js b/js/ui/magnifier.js index d7d3506a5..af6c2567d 100644 --- a/js/ui/magnifier.js +++ b/js/ui/magnifier.js @@ -430,8 +430,10 @@ var Magnifier = class Magnifier { * lines making up the crosshairs. */ setCrosshairsLength(length) { - if (this._crossHairs) - this._crossHairs.setLength(length); + if (this._crossHairs) { + let scaleFactor = St.ThemeContext.get_for_stage(global.stage).scale_factor; + this._crossHairs.setLength(length / scaleFactor); + } } /**