Skip to content
Snippets Groups Projects
Commit 6734c270 authored by Phil Smith's avatar Phil Smith Committed by George Nachman
Browse files

Focus the right session in `didSelectTabViewItem`.

Fixes issue 5375.
parent bf82fea2
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -3852,7 +3852,7 @@ static NSString* TERMINAL_ARRANGEMENT_HIDING_TOOLBELT_SHOULD_RESIZE_WINDOW = @"H
 
PTYSession *activeSession = [self currentSession];
for (PTYSession *s in [self allSessions]) {
[aSession setFocused:(s == activeSession)];
[s setFocused:(s == activeSession)];
}
[self showOrHideInstantReplayBar];
iTermApplicationDelegate *itad = iTermApplication.sharedApplication.delegate;
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