Changeset 3254
- Timestamp:
- 06/05/06 21:02:05 (2 years ago)
- Files:
-
- trunk/Colloquy.xcodeproj/project.pbxproj (modified) (2 diffs)
- trunk/Panels/JVChatRoomMember.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Colloquy.xcodeproj/project.pbxproj
r3251 r3254 100 100 1C7C773B07DBAAB800FB5F83 /* Google.scpt in Copy Plugins */ = {isa = PBXBuildFile; fileRef = 1CD4C098078249C10003620F /* Google.scpt */; }; 101 101 1C7C773C07DBAABC00FB5F83 /* iTunes.scpt in Copy Plugins */ = {isa = PBXBuildFile; fileRef = 1C8CE1EB05A921A00020D841 /* iTunes.scpt */; }; 102 1C7E76070A313AF8009655D0 /* admin-idle.png in Resources */ = {isa = PBXBuildFile; fileRef = F5BEC20E01F1EF1901EE70DE /* admin-idle.png */; };103 1C7E76080A313AF9009655D0 /* super-op-idle.png in Resources */ = {isa = PBXBuildFile; fileRef = 1CC1B76C0A2D70DF0000A797 /* super-op-idle.png */; };104 1C7E76090A313AFA009655D0 /* founder-idle.png in Resources */ = {isa = PBXBuildFile; fileRef = 1CC1B77A0A2D70FB0000A797 /* founder-idle.png */; };105 1C7E760A0A313AFA009655D0 /* person-idle.png in Resources */ = {isa = PBXBuildFile; fileRef = F5BEC20701F13A8601EE70DE /* person-idle.png */; };106 1C7E760B0A313AFB009655D0 /* voice-idle.png in Resources */ = {isa = PBXBuildFile; fileRef = F5BEC20B01F13B0001EE70DE /* voice-idle.png */; };107 1C7E760C0A313AFD009655D0 /* op-idle.png in Resources */ = {isa = PBXBuildFile; fileRef = F5BEC20901F13AA201EE70DE /* op-idle.png */; };108 1C7E760D0A313AFE009655D0 /* half-op-idle.png in Resources */ = {isa = PBXBuildFile; fileRef = 1C2E98C506207AE1000715D8 /* half-op-idle.png */; };109 102 1C7EF54006B341890037F173 /* roomTab.png in Resources */ = {isa = PBXBuildFile; fileRef = 1C7EF53D06B341890037F173 /* roomTab.png */; }; 110 103 1C7EF54106B341890037F173 /* roomTabNewHighlightMessage.png in Resources */ = {isa = PBXBuildFile; fileRef = 1C7EF53E06B341890037F173 /* roomTabNewHighlightMessage.png */; }; … … 2186 2179 1CC1B76F0A2D70DF0000A797 /* super-op.png in Resources */, 2187 2180 1CC1B77D0A2D70FB0000A797 /* founder.png in Resources */, 2188 1C7E76070A313AF8009655D0 /* admin-idle.png in Resources */,2189 1C7E76080A313AF9009655D0 /* super-op-idle.png in Resources */,2190 1C7E76090A313AFA009655D0 /* founder-idle.png in Resources */,2191 1C7E760A0A313AFA009655D0 /* person-idle.png in Resources */,2192 1C7E760B0A313AFB009655D0 /* voice-idle.png in Resources */,2193 1C7E760C0A313AFD009655D0 /* op-idle.png in Resources */,2194 1C7E760D0A313AFE009655D0 /* half-op-idle.png in Resources */,2195 2181 ); 2196 2182 runOnlyForDeploymentPostprocessing = 0; trunk/Panels/JVChatRoomMember.m
r3243 r3254 266 266 else if( modes & MVChatRoomMemberVoicedMode ) iconName = @"voice"; 267 267 268 if( [[self user] status] == MVChatUserAwayStatus || [[self user] idleTime] > 600. )269 iconName = [iconName stringByAppendingString:@"-idle"];268 // if( [[self user] status] == MVChatUserAwayStatus || [[self user] idleTime] > 600. ) 269 // iconName = [iconName stringByAppendingString:@"-idle"]; 270 270 271 271 return [NSImage imageNamed:iconName]; … … 311 311 312 312 - (BOOL) isEnabled { 313 return [[self room] isEnabled] ;313 return [[self room] isEnabled] && ! ( [[self user] status] == MVChatUserAwayStatus || [[self user] idleTime] > 600. ); 314 314 } 315 315
