mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-28 22:47:04 +00:00
nib2cib will now adjust to the correct themed height for subclasses of CPButton.
For examples CPPopUpButton can get another height then CPButton.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user