Update nib2cib NSSearchField.j to use correct field height

This commit is contained in:
Antoine Mercadal
2013-01-08 22:21:51 -08:00
parent 56100f150d
commit ed4094016b
+1 -1
View File
@@ -43,7 +43,7 @@
{
// NSTextField.j makes the field +7.0 pixels tall. We want +8.0 to go to 30.
var frame = [self frame];
[self setFrameSize:CGSizeMake(frame.size.width, frame.size.height + 1.0)];
[self setFrameSize:CGSizeMake(frame.size.width, frame.size.height)];
}
}