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

Make the hotkey window go all the way off the screen. It was incorrectly using...

Make the hotkey window go all the way off the screen. It was incorrectly using the screen's visible frame to compute its offscreen position. Fixes bug 2638
parent e870cdd3
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -1555,7 +1555,7 @@ static void RollOutHotkeyTerm(PseudoTerminal* term, BOOL itermWasActiveWhenHotke
break;
 
case WINDOW_TYPE_BOTTOM:
rect.origin.y = screenFrame.origin.y-rect.size.height;
rect.origin.y = screenFrame.origin.y - rect.size.height;
[[NSAnimationContext currentContext] setDuration:[[PreferencePanel sharedInstance] hotkeyTermAnimationDuration]];
[[[term window] animator] setFrame:rect display:YES];
[[[term window] animator] setAlphaValue:0];
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