vote up 0 vote down star

By default, cocoa progress bars are slightly fat and I want something a little slimmer, like the progress bars seen in the Finder copy dialog. However, Interface Builder locks the NSProgressIndicator control height to 20 pixels and my programmatic attempts to slim down aren't working, as calls to

[progressBar setControlSize:NSMiniControlSize];

and

[progressBar setControlSize:NSSmallControlSize];

in awakeFromNib don't do anything, and the suggestive looking NSProgressIndicatorThickness seen in the header file doesn't seem to plug into any methods that I can see.

What's the trick?

flag

71% accept rate

1 Answer

vote up 1 vote down check

Those calls should have worked. In Interface Builder, in the Geometry pane (the one whose icon is a ruler), there is an equivalent control size selector that offers "Regular" and "Small" sizes.

link|flag
I don't know why the calls didn't work, but the IB checkbox did. That's an answer, thanks! – Rhythmic Fistman Oct 8 '08 at 22:20

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.