Loading
fix(macos): tame the episodes popover content, silence the Swift 6 warning
The base bar now renders on hardware; expanding the popover blanked it. Two likely culprits in its content, both removed: - The episodes scrubber carried the same stretch constraint (1200 pt, low priority) that already blanked the bar once; it now uses the proven shape (plain <=800 pt cap, no stretch). - The scrubber selection was reset synchronously inside the touch gesture callback; the reset now runs on the next main-actor turn. Also asserts the NSScrubberFlowLayoutDelegate conformance as @preconcurrency (AppKit calls it on the main thread), clearing the Swift 6 data-race warning the user reported. Co-Authored-By: Claude (RCA)