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

Fix bug where window turns gray when entering IR on monitor other than the first

parent fec4fa88
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -3756,8 +3756,10 @@ NSString *sessionsKey = @"sessions";
 
 
NSRect aRect = [[self window] frame];
aRect.origin.x = [self _haveLeftBorder] ? 1 : 0;
aRect.origin.y = [self _haveBottomBorder] ? 1 : 0;
if (![bottomBar isHidden]) {
aRect.origin.y = [bottomBar frame].size.height;
aRect.origin.y += [bottomBar frame].size.height;
aRect.size.height -= aRect.origin.y;
} else {
aRect.origin.y = 0;
Loading
Loading
@@ -3777,7 +3779,7 @@ NSString *sessionsKey = @"sessions";
NSRect bottomBarFrame = [bottomBar frame];
bottomBarFrame.size.width = [TABVIEW frame].size.width;
bottomBarFrame.origin.x = [TABVIEW frame].origin.x;
[bottomBar setFrame: bottomBarFrame];
[bottomBar setFrame:bottomBarFrame];
 
NSRect instantReplayFrame = [instantReplaySubview frame];
float dWidth = instantReplayFrame.size.width - bottomBarFrame.size.width;
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