Skip to content

Commit

Permalink
Fix for bottom status bar, courtesy of @0xced
Browse files Browse the repository at this point in the history
  • Loading branch information
fpillet committed May 24, 2016
1 parent b56af8e commit 0b2a072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Desktop Viewer/Classes/LoggerWindowController.m
Expand Up @@ -628,7 +628,7 @@ - (void)splitView:(NSSplitView *)sender resizeSubviewsWithOldSize:(NSSize)oldSiz
NSView *mainDisplay = [[sender subviews] objectAtIndex:1];
NSRect frame = mainDisplay.frame;
frame.size.width += newSize.width - oldSize.width;
frame.size.height += newSize.height - oldSize.height;
frame.size.height = newSize.height;
[mainDisplay setFrame:frame];

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

0 comments on commit 0b2a072

Please sign in to comment.