Skip to content
Snippets Groups Projects
Commit 90215cd1 authored by George Nachman's avatar George Nachman
Browse files

Add some logging for when the app becomes or resigns active

parent 5fd9580e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -1136,9 +1136,8 @@ static BOOL hasBecomeActive = NO;
}
 
 
- (void)applicationWillBecomeActive:(NSNotification *)aNotification
{
DLog(@"******** Become Active");
- (void)applicationWillBecomeActive:(NSNotification *)aNotification {
DLog(@"******** Become Active\n%@", [NSThread callStackSymbols]);
}
 
- (void)hideToolTipsInView:(NSView *)aView {
Loading
Loading
@@ -1473,6 +1472,7 @@ static BOOL hasBecomeActive = NO;
}
 
- (void)applicationDidResignActive:(NSNotification *)aNotification {
DLog(@"******** Resign Active\n%@", [NSThread callStackSymbols]);
if (secureInputDesired_) {
DLog(@"Application resigning active. Disabling secure input.");
[self setSecureInput:NO];
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment