Commit 32865ddf authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fixed resizing issue, which was in part fixed by the previous commit...

macosx: fixed resizing issue, which was in part fixed by the previous commit by accident (close #6203)
(cherry picked from commit f56aba45d9d053e74ff35c1aa877c4326391753a)
parent 15afdc9e
......@@ -1975,7 +1975,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
- (CGFloat)splitView:(NSSplitView *)splitView constrainMaxCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)dividerIndex
{
if (dividerIndex == 0)
return ([self frame].size.width - 300.0);
return ([self frame].size.width - 400.0);
else
return proposedMax;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment