Commit 1bd45f1e authored by Felix Paul Kühne's avatar Felix Paul Kühne

* fix another resize-bug introduced in [11440] (refs #210)

parent a6ca9da9
......@@ -1553,14 +1553,14 @@ static VLCMain *_o_sharedMainInstance = nil;
if ( o_size_with_playlist.height > 200 )
{
o_rect.size.height = o_size_with_playlist.height;
}
else
{
} else {
o_rect.size.height = 500;
}
if ( o_rect.size.width == [o_window minSize].width )
if ( o_size_with_playlist.width > [o_window minSize].width )
{
o_rect.size.width = o_size_with_playlist.width;
} else {
o_rect.size.width = 500;
}
......
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