diff --git a/logPlus/qmycustomplot.cpp b/logPlus/qmycustomplot.cpp index a56831e..656e856 100644 --- a/logPlus/qmycustomplot.cpp +++ b/logPlus/qmycustomplot.cpp @@ -12542,8 +12542,8 @@ void QMyCustomPlot::vertScrollBarChanged_setGeometry(QString strUuid, double val double dDelta = value; //- upper double dPercent = dDelta / (low-upper); - move(geoRect.x(), -(dPercent*geoRect.height())); - //setGeometry(geoRect.x(), -(dPercent*geoRect.height()), geoRect.width(), geoRect.height()); + //move(geoRect.x(), -(dPercent*geoRect.height())); + setGeometry(geoRect.x(), -(dPercent*geoRect.height()), geoRect.width(), geoRect.height()); return; }