diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 0e96ca74..de7dd5fa 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -1577,6 +1577,7 @@ void gGraphView::keyReleaseEvent(QKeyEvent *event) m_graphs[m_graph_index]->mouseReleaseEvent(&mevent); m_metaselect = false; + timedRedraw(50); } #ifdef BROKEN_OPENGL_BUILD QWidget::keyReleaseEvent(event); @@ -1677,6 +1678,7 @@ void gGraphView::wheelEvent(QWheelEvent *event) { // Hmm.. I could optionalize this to change mousewheel behaviour without affecting the scrollbar now.. + if (m_button_down) return; if ((event->modifiers() & Qt::ControlModifier)) { int x = event->x(); int y = event->y(); diff --git a/sleepyhead/Graphs/gLineOverlay.cpp b/sleepyhead/Graphs/gLineOverlay.cpp index d51bb0a9..28818b3f 100644 --- a/sleepyhead/Graphs/gLineOverlay.cpp +++ b/sleepyhead/Graphs/gLineOverlay.cpp @@ -287,7 +287,7 @@ void gLineOverlaySummary::paint(QPainter &painter, gGraph &w, const QRegion ® QString a; - if (w.graphView()->selectionInProgress()) { + if (w.graphView()->selectionInProgress() || w.graphView()->metaSelect()) { a = QObject::tr("Duration")+": "+w.selDurString(); } else {