Commit f56aba45 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)
parent 5b93d5b1
...@@ -1975,7 +1975,7 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -1975,7 +1975,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
- (CGFloat)splitView:(NSSplitView *)splitView constrainMaxCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)dividerIndex - (CGFloat)splitView:(NSSplitView *)splitView constrainMaxCoordinate:(CGFloat)proposedMax ofSubviewAt:(NSInteger)dividerIndex
{ {
if (dividerIndex == 0) if (dividerIndex == 0)
return ([self frame].size.width - 300.0); return ([self frame].size.width - 400.0);
else else
return proposedMax; 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