79797362

Date: 2025-10-23 03:02:53
Score: 0.5
Natty:
Report link

Here's a workaround solution I've came to disable NSScrollPocket:

public extension NSScrollView {
    func disableScrollPockets() {
        guard #available(macOS 26.0, *) else { return }
        setValue(0, forKey: "allowedPocketEdges")
        setValue(0, forKey: "alwaysShownPocketEdges")
    }
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: goldwalk