From 894e490c36b3580e9bd2b6e7a63892d4ce25ae55 Mon Sep 17 00:00:00 2001 From: Mike Date: Sat, 9 Apr 2016 19:05:36 +0100 Subject: [PATCH] plot: Don't steal all mouse events --- plot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plot.cpp b/plot.cpp index 9971906..b89d419 100644 --- a/plot.cpp +++ b/plot.cpp @@ -26,7 +26,7 @@ Plot::Plot(std::shared_ptr src) : sampleSource(src) bool Plot::mouseEvent(QEvent::Type type, QMouseEvent event) { - + return false; } std::shared_ptr Plot::output()