We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebeaf45 commit ee3890aCopy full SHA for ee3890a
1 file changed
Pixel Picker/OverlayPanel/PPOverlayController.swift
@@ -322,7 +322,7 @@ class PPOverlayController: NSWindowController {
322
323
// Calculate a zoomed rect which will crop the screenshot we took.
324
let magnification = CGFloat(PPState.shared.magnificationLevel)
325
- let zoomReciprocal: CGFloat = 1.0 / (focusMode ? magnification * 2.5 : magnification)
+ let zoomReciprocal: CGFloat = 1.0 / (focusMode ? magnification * 2.0 : magnification)
326
let currentSize = CGFloat(screenShot.width) + 1
327
let origin = floor(currentSize * ((1 - zoomReciprocal) / 2))
328
let x = origin + (isHalf(normalisedPoint.x) ? 1 : 0)
0 commit comments