You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On every bordered NSWindow, there's a thin 1px border. I use [NSColor colorWithCalibratedWhite:0.10f alpha: 0.15f] to mimic this border, but it may not be wholly accurate.
The text was updated successfully, but these errors were encountered:
The problem is that CALayer's border is drawn as an inset, which unfortunately isn't what NSWindow does. The workaround would be to draw the content inset, then add a border, but that's not ideal. If you have any other thoughts I'd love to know.
On every bordered
NSWindow
, there's a thin 1px border. I use[NSColor colorWithCalibratedWhite:0.10f alpha: 0.15f]
to mimic this border, but it may not be wholly accurate.The text was updated successfully, but these errors were encountered: