# HG changeset patch # User Stephen Holt # Date 1257118290 18000 # Node ID b7529bc734c59831a392d7701eb3dff37a00f358 # Parent a79db9a3f818014ddce7dbcfbe7b134f4345a64c Fix a logic error preventing the display of the chat transcript and channel member counts. Fixes #13292 diff -r a79db9a3f818014ddce7dbcfbe7b134f4345a64c -r b7529bc734c59831a392d7701eb3dff37a00f358 Source/KNShelfSplitView.m --- a/Source/KNShelfSplitView.m Sun Nov 01 15:27:16 2009 -0500 +++ b/Source/KNShelfSplitView.m Sun Nov 01 18:31:30 2009 -0500 @@ -710,8 +710,8 @@ #pragma mark Status string - (void)setResizeThumbStringValue:(NSString *)inString { - if (attributedStringValue && ![inString isEqualToString:[attributedStringValue string]]) { - [attributedStringValue release]; + if (!(attributedStringValue && [inString isEqualToString:[attributedStringValue string]])) { + if(attributedStringValue) [attributedStringValue release]; if (inString) { NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys: [NSParagraphStyle styleWithAlignment:NSLeftTextAlignment