Skip to content

Commit

Permalink
Qt: increase height for resume-panel
Browse files Browse the repository at this point in the history
Needed because hideResumePanel() decreases the height.
Close #14566

Signed-off-by: Jean-Baptiste Kempf <[email protected]>
  • Loading branch information
ssbssa authored and jbkempf committed Feb 27, 2016
1 parent a8899ae commit b1b2133
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/gui/qt4/main_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,8 @@ void MainInterface::showResumePanel( int64_t _time ) {
resumePlayback();
else
{
if( !isFullScreen() && !isMaximized() )
resize( width(), height() + resumePanel->height() );
resumePanel->setVisible(true);
resumeTimer->start();
}
Expand Down

0 comments on commit b1b2133

Please sign in to comment.