I have a NSVisualEffectView within a NSPopover developed for 10.10.
When subclassing the NSVisualEffectView to have hover background color effect, the borderless button color seems to be different
I tried setting the backgroundColor
of the button cell to clearColor
or the same as I used in drawRect:
in of the NSVisualEffectView, the former gives wrong color (not filled with blue) and the later still the same with wrong color. (gray box around its border).
CALayer
can fix this but is there a way without using it?
Any ideas?