From 6f961ffe20bed7f8eadfa21d2288d1cfc418bb8b Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Fri, 17 Mar 2023 07:39:47 -0400 Subject: [PATCH] fix quick manual reducing size of graph. ifixes Fast mouse movement overshoots minimum size. --- oscar/Graphs/gGraphView.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/oscar/Graphs/gGraphView.cpp b/oscar/Graphs/gGraphView.cpp index f0ffe94d..f4b688ca 100644 --- a/oscar/Graphs/gGraphView.cpp +++ b/oscar/Graphs/gGraphView.cpp @@ -1851,8 +1851,11 @@ void gGraphView::mouseMoveEvent(QMouseEvent *event) float h = m_graphs[m_sizer_index]->height(); h += my / m_scaleY; - if (h > m_graphs[m_sizer_index]->minHeight()) { - m_graphs[m_sizer_index]->setHeight(h); + gGraph* graph = m_graphs[m_sizer_index]; + int minHeight = graph-> minHeight(); + if (h < minHeight) { h = minHeight; } // past minimum height - reset to to minimum + if ((h > minHeight) || ( graph->height() > minHeight)) { + graph->setHeight(h); m_sizer_point.setX(x); m_sizer_point.setY(y); updateScrollBar();