Changeset 22848
- Timestamp:
- 03/09/2008 12:20:44 AM (9 months ago)
- Files:
-
- trunk/Frameworks/Adium Framework/Source/ESContactAlertsViewController.m (modified) (2 diffs)
- trunk/Resources/AIInfoInspectorPane.nib/classes.nib (modified) (1 diff)
- trunk/Resources/AIInfoInspectorPane.nib/info.nib (modified) (1 diff)
- trunk/Resources/AIInfoInspectorPane.nib/keyedobjects.nib (modified) (previous)
- trunk/Source/AIInfoInspectorPane.h (modified) (1 diff)
- trunk/Source/AIInfoInspectorPane.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Frameworks/Adium Framework/Source/ESContactAlertsViewController.m
r22769 r22848 740 740 741 741 if ([contactEvents count]) { 742 font = [NSFont boldSystemFontOfSize: 12];742 font = [NSFont boldSystemFontOfSize:9]; 743 743 } else { 744 font = [NSFont boldSystemFontOfSize:11];744 font = [NSFont systemFontOfSize:9]; 745 745 } 746 746 … … 751 751 752 752 image = [actionHandler imageForActionID:actionID]; 753 font = [NSFont systemFontOfSize: 11];753 font = [NSFont systemFontOfSize:9]; 754 754 } 755 755 trunk/Resources/AIInfoInspectorPane.nib/classes.nib
r22782 r22848 86 86 <key>inspectorContentView</key> 87 87 <string>NSView</string> 88 <key>profileProgress</key> 89 <string>NSProgressIndicator</string> 88 90 <key>profileView</key> 89 91 <string>NSTextView</string> trunk/Resources/AIInfoInspectorPane.nib/info.nib
r22619 r22848 4 4 <dict> 5 5 <key>IBFramework Version</key> 6 <string>6 29</string>6 <string>644</string> 7 7 <key>IBLastKnownRelativeProjectPath</key> 8 <string>../ ../Adium.xcodeproj</string>8 <string>../Adium.xcodeproj</string> 9 9 <key>IBOldestOS</key> 10 10 <integer>5</integer> trunk/Source/AIInfoInspectorPane.h
r22620 r22848 35 35 IBOutlet NSTextView *statusView; 36 36 IBOutlet NSTextView *profileView; 37 38 IBOutlet NSProgressIndicator *profileProgress; 37 39 } 38 40 trunk/Source/AIInfoInspectorPane.m
r22782 r22848 159 159 160 160 -(void)updateProfileView:(AIListObject *)inObject 161 { 161 { 162 162 [[adium contentController] filterAttributedString:([inObject isKindOfClass:[AIListContact class]] ? 163 163 [(AIListContact *)inObject profile] : … … 173 173 - (void)gotFilteredProfile:(NSAttributedString *)infoString context:(AIListObject *)object 174 174 { 175 //If we've been called with infoString == nil, we don't have the profile information yet. 176 if(!infoString && ![displayedObject isKindOfClass:[AIListGroup class]]) { 177 //This should only run if we get a nil string and if we aren't a group. 178 [profileProgress startAnimation:self]; 179 /* We deal with the progress indicator's visibility manually, because sometimes it will 180 corrupt text when set to hide/unhide automatically. */ 181 [profileProgress setHidden:NO]; 182 //We can freely start the progress indicator numerous times - it has no effect. 183 } else { 184 //Non-nil info string means we have some profile text and we will bet setting it. 185 [profileProgress stopAnimation:self]; 186 [profileProgress setHidden:YES]; 187 } 188 175 189 [self setAttributedString:infoString intoTextView:profileView]; 176 190 }