Commit 10e83250 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Don't resize when you toggle playlist if undocked.

First, this is useless, then, it is stupid, and finally, it will resize your
video if your resized it by hand. (However, this reveals a bigger bug in the
 VideoWidget ) This is NOT critical, but this is not really good.
parent 111f8992
...@@ -765,7 +765,7 @@ void MainInterface::togglePlaylist() ...@@ -765,7 +765,7 @@ void MainInterface::togglePlaylist()
{ {
/* toggle the visibility of the playlist */ /* toggle the visibility of the playlist */
TOGGLEV( playlistWidget ); TOGGLEV( playlistWidget );
resize( sizeHint() ); //resize( sizeHint() );
playlistVisible = !playlistVisible; playlistVisible = !playlistVisible;
} }
} }
......
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