From c966730aa092d232df5fc64e3acfd910dcdf2975 Mon Sep 17 00:00:00 2001 From: Flavio Date: Thu, 20 Sep 2012 14:45:51 +0200 Subject: [PATCH] Minor fix to the new fullscreen code --- src/MainWindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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(); } -- 2.39.2