diff --git a/Tools/nib2cib/NSButton.j b/Tools/nib2cib/NSButton.j index f5597344c..4b095bdce 100644 --- a/Tools/nib2cib/NSButton.j +++ b/Tools/nib2cib/NSButton.j @@ -220,8 +220,8 @@ var NSButtonIsBorderedMask = 0x00800000, - If there is no max height either, don't do any height adjustments. */ var theme = [[Converter sharedConverter] themes][0], - minSize = [theme valueForAttributeWithName:@"min-size" forClass:[CPButton class]], - maxSize = [theme valueForAttributeWithName:@"max-size" forClass:[CPButton class]], + minSize = [theme valueForAttributeWithName:@"min-size" forClass:[self class]], + maxSize = [theme valueForAttributeWithName:@"max-size" forClass:[self class]], adjustHeight = NO; if (minSize.height > 0 && maxSize.height > 0 && minSize.height === maxSize.height)