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

Qt4: fix a minor (but annoying) UI glitch on restart

Close #4041
(cherry picked from commit 10c68b56f970e05729b30a1c0f42cfe87d5fc55d)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent fedd27d4
......@@ -465,6 +465,14 @@ inline void MainInterface::createStatusBar()
CONNECT( THEMIM->getIM(), seekRequested( float ),
timeLabel, setDisplayPosition( float ) );
/* This shouldn't be necessary, but for somehow reason, the statusBarr
starts at height of 20px and when a text is shown it needs more space.
But, as the QMainWindow policy doesn't allow statusBar to change QMW's
geometry, we need to force a height. If you have a better idea, please
tell me -- jb
*/
statusBarr->setFixedHeight( statusBarr->sizeHint().height() + 2 );
}
/**********************************************************************
......
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