From 451f8459b6d3fadafe429a0988b05d0559887f43 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Mon, 22 Oct 2018 00:24:47 +0200 Subject: [PATCH] If using the mouse wheel to change pts, don't use it to scroll. --- mainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 198a631..a483dc1 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -594,6 +594,7 @@ bool MainWindow::eventFilter(QObject *watched, QEvent *event) } } currently_deferring_model_changes = false; + return true; // Don't scroll. } else if (event->type() == QEvent::MouseButtonRelease) { scrubbing = false; } -- 2.39.2