adium 2212:1fe21d79ded7: Didn't hit save before checking in the ...
commits at adium.im
commits at adium.im
Sun May 17 00:56:35 UTC 2009
details: http://hg.adium.im/adium/rev/1fe21d79ded7
revision: 2212:1fe21d79ded7
author: Zachary West <zacw at adium.im>
date: Sat May 16 20:56:30 2009 -0400
Didn't hit save before checking in the collapsed-count removal.
diffstat:
Frameworks/Adium Framework/Source/AIListGroupBubbleToFitCell.m | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (21 lines):
diff -r d5fa5236c305 -r 1fe21d79ded7 Frameworks/Adium Framework/Source/AIListGroupBubbleToFitCell.m
--- a/Frameworks/Adium Framework/Source/AIListGroupBubbleToFitCell.m Sat May 16 20:54:32 2009 -0400
+++ b/Frameworks/Adium Framework/Source/AIListGroupBubbleToFitCell.m Sat May 16 20:56:30 2009 -0400
@@ -28,7 +28,7 @@
{
NSString *countText;
- if (([listObject boolValueForProperty:@"Show Count"] || (showCollapsedCount && ![controlView isItemExpanded:proxyObject])) &&
+ if ([listObject boolValueForProperty:@"Show Count"] &&
(countText = [listObject valueForProperty:@"Count Text"])) {
return [[[NSAttributedString alloc] initWithString:[NSString stringWithFormat:@"%@ (%@)", [self labelString], countText]
attributes:[self labelAttributes]] autorelease];
@@ -47,7 +47,7 @@
{
int width = [super cellWidth];
- if (([listObject boolValueForProperty:@"Show Count"] || (showCollapsedCount && ![controlView isItemExpanded:proxyObject])) &&
+ if ([listObject boolValueForProperty:@"Show Count"] &&
[listObject valueForProperty:@"Count Text"]) {
//We'll be added a space and parenthesis to the group count if it's displayed
NSAttributedString *countText = [[NSAttributedString alloc] initWithString:@" ()"
More information about the commits
mailing list