Skip to content

Commit 0b2a072

Browse files
committed
Fix for bottom status bar, courtesy of @0xced
1 parent b56af8e commit 0b2a072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Desktop Viewer/Classes/LoggerWindowController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ - (void)splitView:(NSSplitView *)sender resizeSubviewsWithOldSize:(NSSize)oldSiz
628628
NSView *mainDisplay = [[sender subviews] objectAtIndex:1];
629629
NSRect frame = mainDisplay.frame;
630630
frame.size.width += newSize.width - oldSize.width;
631-
frame.size.height += newSize.height - oldSize.height;
631+
frame.size.height = newSize.height;
632632
[mainDisplay setFrame:frame];
633633

634634
NSView *sidebar = [[sender subviews] objectAtIndex:0];

0 commit comments

Comments
 (0)