SubClass of NSPopUpButtonCell and NSSmallControlSize
SubClass of NSPopUpButtonCell and NSSmallControlSize
- Subject: SubClass of NSPopUpButtonCell and NSSmallControlSize
- From: Stéphane Sudre <email@hidden>
- Date: Tue, 5 Jun 2001 11:32:25 +0200
I'm curently subclassing NSPopUpButtonCell and am trying to make this
cell small with NSSmallControlSize.
It's not working. The Menu is still BIG.
in a sublclass of NSPopUpButton:
- (id) initWithFrame: (NSRect) frame
{
[super initWithFrame:frame];
[[self cell] setControlSize:NSSmallControlSize];
return self;
}
Cool ?
I hate Cocoa when it comes to NSCell...