Changeset 24392
- Timestamp:
- 07/17/2008 09:53:39 AM (6 months ago)
- Files:
-
- trunk/Source/AIListWindowController.m (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/AIListWindowController.m
r23805 r24392 209 209 //Hide the window while it's still off-screen 210 210 [[self window] setAlphaValue:0.0]; 211 AILogWithSignature(@"Setting to alpha 0 while the window is offscreen"); 211 212 212 213 //Then move it back on screen so that we'll save the proper position in -[AIWindowController windowWillClose:] … … 246 247 - (void)setWindowLevel:(int)level 247 248 { 249 AILogWithSignature(@"Setting to %i", level); 248 250 [[self window] setLevel:level]; 249 251 if (![NSApp isOnLeopardOrBetter]) { … … 949 951 if (windowSlidOffScreenEdgeMask == AINoEdges) { 950 952 [[self window] setAlphaValue:previousAlpha]; 953 AILogWithSignature(@"Set window to previous alpha of %f", previousAlpha); 951 954 } 952 955 … … 973 976 previousAlpha = [[self window] alphaValue]; 974 977 [[self window] setAlphaValue:0.0]; 978 AILogWithSignature(@"Previous alpha is now %f; window set to alpha 0.0 ", previousAlpha); 975 979 } 976 980 … … 1056 1060 [contactListController contactListDesiredSizeChanged]; 1057 1061 [[self window] setAlphaValue:previousAlpha]; 1062 AILogWithSignature(@"Set window to previous alpha of %f", previousAlpha); 1058 1063 } 1059 1064 }