Re: NSComboBoxCell ugliness
Re: NSComboBoxCell ugliness
- Subject: Re: NSComboBoxCell ugliness
- From: Chuck Pisula <email@hidden>
- Date: Fri, 31 Oct 2003 15:51:03 -0800
This looks like a bug in NSComboBoxCell, specifically the table data
cell does not pick up the font when the combo box cell is copied by the
table view. You can workaround this by using a subclass of
NSComboBoxCell that does this:
-(id)copyWithZone:(NSZone *)zone {
id copy = [super copyWithZone:zone];
[copy setFont:[self font]];
}
And I'd follow up by logging a bug with apple...
-chuck
On Oct 31, 2003, at 5:18 AM, Moray Taylor wrote:
Thanks very much for reply.
The setFont method changes the font in the cell itself, but doesn't
affect the attached menu. I also use the NSPopupButtonCell, this works
fine (the menu appears appropriately sized), but the NSComboBoxCell's
menu seems screwed up when used at a small size.
Has anyone else experienced this problem?
Thanks a lot
Moray
One solution could be to change the Font of the Cell.
[myPrototypeCell setFont:[NSFont
fontWhichFitsWellWithRowSizeOfMyTableView]];
I did this for a NSPopupButtonCell.
On Friday, October 31, 2003, at 12:42 PM, Moray Taylor wrote:
Hi,
I am using an NSComboxBoxCell in an NSTableView, it works fine, but
when the menu pops up, the text is vertically cropped.
I am using setControlSize(NSCell.SmallControlSize) to make it a nice
size, the cell itself adopts this small size, as does the text
within it, but the attached menu doesn't seem to work with this
size.
Is there a solution?
Thanks in advance
Moray
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.