Is it somehow possible to subclass NSTextField, and add a 6px border to the bottom side only? The other sides should be borderless. No shadows, no anything.
I tried replicating this with a NSView subclass 6px high instead (so 2 separate objects), but the view is drawing itself too much when I'm scrolling fast, there seems to be some kind of lag (though I do nothing more than NSRectFill([self bounds]).
That's why I want to subclass NSTextField instead.