Commit f2c03da6 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt: document MinimalView functions

parent 2f8eed35
......@@ -782,6 +782,10 @@ void MainInterface::dockPlaylist( bool p_docked )
playlistVisible = true;
}
/*
* setMinimalView is the private function used by
* the SLOT toggleMinimalView and setVideoFullScreen
*/
void MainInterface::setMinimalView( bool b_minimal )
{
menuBar()->setVisible( !b_minimal );
......@@ -791,7 +795,9 @@ void MainInterface::setMinimalView( bool b_minimal )
}
/*
If b_minimal is false, then we are normalView
* This public SLOT is used for moving to minimal View Mode
*
* If b_minimal is false, then we are normalView
*/
void MainInterface::toggleMinimalView( bool b_minimal )
{
......
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