From 0a62369d2146d8495ad6c03ddae45137111df949 Mon Sep 17 00:00:00 2001 From: Daniel Clarke Date: Mon, 8 Sep 2014 20:34:11 -0400 Subject: [PATCH] Fixed potential case when leaving fullscreen with mouse autohide --- src/ui/mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index a0fcf5f5..ee021e00 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -1313,6 +1313,7 @@ void MainWindow::FullScreen(bool fs) ui->playbackLayoutWidget->setVisible(true); setMouseTracking(false); // stop registering mouse move event setCursor(QCursor(Qt::ArrowCursor)); // show cursor + autohide->stop(); } }