X-Git-Url: http://git.ithinksw.org/ITKit.git/blobdiff_plain/0c83fc987c4d639d82d18b6373918b41fafacd3e..a8daf8ac0972b8b5b582a97b50889fec447f45a4:/ITStatusItem.m diff --git a/ITStatusItem.m b/ITStatusItem.m index d0bcb9f..bf1d18f 100755 --- a/ITStatusItem.m +++ b/ITStatusItem.m @@ -18,6 +18,7 @@ - (NSStatusBarButton*)_button; @end + /*************************************************************************/ #pragma mark - #pragma mark PRIVATE METHOD DECLARATIONS @@ -30,6 +31,7 @@ - (void)setSmallTitle:(NSString*)title; @end + @implementation ITStatusItem /*************************************************************************/ @@ -87,11 +89,10 @@ #pragma mark PRIVATE METHODS /*************************************************************************/ - - - (void)setSmallTitle:(NSString*)title { - NSAttributedString *attrTitle = [[[NSAttributedString alloc] initWithString:title attributes:[NSDictionary dictionaryWithObject:[NSFont fontWithName:@"Lucida Grande" size:12.0] forKey:NSFontAttributeName]] autorelease]; + NSAttributedString *attrTitle = [[[NSAttributedString alloc] initWithString:title attributes:[NSDictionary dictionaryWithObject:[NSFont fontWithName:@"LucidaGrande" size:12.0] forKey:NSFontAttributeName]] autorelease]; [self setAttributedTitle:attrTitle]; } + @end