From f25f991e9f50ce5ba255ab389a0fde33f972b366 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Mon, 27 Jul 2020 12:57:16 -0400 Subject: [PATCH] Add feature to suppress zooming when holding down the shift key. This allows users to measure a duration without zooming. --- Htmldocs/release_notes.html | 1 + oscar/Graphs/gGraph.cpp | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html index cd429698..2afce096 100644 --- a/Htmldocs/release_notes.html +++ b/Htmldocs/release_notes.html @@ -19,6 +19,7 @@
  • [new] OSCAR checks automatically for new releases.
  • [new] Privacy feature allows suppressing profile info in Statistics page and printed reports.
  • [new] Add option to print reports in black and white (monochrome).
  • +
  • [new] Hold down the Shift key while selecting a range on a chart to measure the duration without zooming.
  • [fix] Improve support for rare events in 50-series Philips Respironics devices.
  • [fix] Improve warning on Daily page when settings are missing.
  • [fix] No longer zoom charts to maximum when clicking on chart with popup menu present.
  • diff --git a/oscar/Graphs/gGraph.cpp b/oscar/Graphs/gGraph.cpp index d4699ceb..5244d6be 100644 --- a/oscar/Graphs/gGraph.cpp +++ b/oscar/Graphs/gGraph.cpp @@ -927,6 +927,11 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event) m_selecting_area = false; m_selection.setWidth(0); + // Shift-drag only measures a range and should not zoom in. + if ((event->modifiers() & Qt::ShiftModifier) != 0) { + return; + } + if (m_graphview->horizTravel() > mouse_movement_threshold) { x -= left; //+m_marginleft; //y -= top; //+m_margintop;