Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NSButton without "click highlighting"

I've got an NSButton with an image (and no text), over a blueish background. The Style is "Square", type is "Momentary Push In", not bordered etc.

When I click the button, there is a light rect around it, which is highlighted for a second. How do I get rid of it?

I only want to have the image displayed and when clicked there shouldn't be any highlight indication… Should I subclass the button or is there a simple setting in Interface Builder?

Not clicked – normal state: NSButton normal state

Clicked - highlighted: highlighted NSButton when clicked

so I don't want that highlighting rect ;-)

like image 851
tamasgal Avatar asked Jan 15 '12 14:01

tamasgal


1 Answers

You need to set the cell's highlightsBy property. See Borderless NSButton turns gray when clicked for some more info.

like image 144
Becca Royal-Gordon Avatar answered Sep 17 '22 18:09

Becca Royal-Gordon