Commit dabbedc6 authored by Sebastien Zwickert's avatar Sebastien Zwickert Committed by Pierre d'Herbemont

gui/macosx: fix a side effect when the playlist's splitview is resizing in embedded window.

Signed-off-by: default avatarPierre d'Herbemont <pdherbemont@free.fr>
parent 39d525d8
...@@ -275,6 +275,8 @@ ...@@ -275,6 +275,8 @@
{ {
if([splitView isVertical]) if([splitView isVertical])
return proposedPosition; return proposedPosition;
else if ( splitView == o_vertical_split )
return proposedPosition ;
else { else {
float bottom = [splitView frame].size.height - [splitView dividerThickness]; float bottom = [splitView frame].size.height - [splitView dividerThickness];
if(proposedPosition > bottom - 50) { if(proposedPosition > bottom - 50) {
......
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