mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2025-04-03 07:31:36 +00:00
more bugfixing for bug 750
This commit is contained in:
parent
0edcba5c71
commit
f68b66be57
@ -211,7 +211,9 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
||||
|
||||
result.origin.x=10+TEXTGAP;
|
||||
result.size.height=ceil(size.height);
|
||||
result.size.width=ceil(size.width);
|
||||
|
||||
//result.size.width=ceil(size.width); // // NSTextField cell must be bugged we get too low values for the width here
|
||||
result.size.width = bounds.size.width - result.origin.x; // use the whole width until the text field cell size is fixed
|
||||
|
||||
switch(_titlePosition){
|
||||
|
||||
@ -242,6 +244,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -305,7 +308,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
||||
if (_boxType != NSBoxSeparator) {
|
||||
// Separator are transparent except for drawing a line
|
||||
[[NSColor controlColor] setFill];
|
||||
NSRectFill(rect);
|
||||
NSRectFill(grooveRect);
|
||||
}
|
||||
|
||||
if (_boxType == NSBoxCustom){
|
||||
@ -410,6 +413,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
||||
|
||||
-(void)updateCell:(NSCell *)cell
|
||||
{
|
||||
[self setNeedsDisplay:YES];
|
||||
}
|
||||
|
||||
@end
|
||||
|
Loading…
x
Reference in New Issue
Block a user