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

Only show key icon at password prompt in active terminal. Issue 6342

parent e3d6e2e6
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -1105,7 +1105,9 @@ static const int kDragThreshold = 3;
_drawingHelper.copyMode = _delegate.textViewCopyMode;
_drawingHelper.copyModeSelecting = _delegate.textViewCopyModeSelecting;
_drawingHelper.copyModeCursorCoord = _delegate.textViewCopyModeCursorCoord;
_drawingHelper.passwordInput = _delegate.textViewPasswordInput;
_drawingHelper.passwordInput = ([self isInKeyWindow] &&
[_delegate textViewIsActiveSession] &&
_delegate.textViewPasswordInput);
 
DLog(@"drawing document visible rect %@", NSStringFromRect(self.enclosingScrollView.documentVisibleRect));
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