From: Flavio Date: Thu, 20 Sep 2012 12:45:51 +0000 (+0200) Subject: Minor fix to the new fullscreen code X-Git-Tag: 1.9~5 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c966730aa092d232df5fc64e3acfd910dcdf2975;p=minitube Minor fix to the new fullscreen code --- diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index adf0e85..e5d78d2 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -1062,7 +1062,9 @@ void MainWindow::updateUIForFullscreen() { if (views->currentWidget() == mediaView) mediaView->setFocus(); - if (!m_fullscreen) { + if (m_fullscreen) { + hideMouse(); + } else { mouseTimer->stop(); unsetCursor(); }