diff --git a/Code/qtiplot/qtiplot/src/Graph.cpp b/Code/qtiplot/qtiplot/src/Graph.cpp index 3d369ca3195e27bcb89eacda04a7de89bf9fb266..5e49d197320dd3fb58c1c1d41d1239279a611dc0 100644 --- a/Code/qtiplot/qtiplot/src/Graph.cpp +++ b/Code/qtiplot/qtiplot/src/Graph.cpp @@ -5471,9 +5471,11 @@ void Graph::enablePanningMagnifier(bool on) if (on){ cnvs->setCursor(Qt::pointingHandCursor); d_magnifier = new QwtPlotMagnifier(cnvs); + d_magnifier->setAxisEnabled(QwtPlot::yRight,false); d_magnifier->setZoomInKey(Qt::Key_Plus, Qt::ShiftModifier); d_panner = new QwtPlotPanner(cnvs); + d_panner->setAxisEnabled(QwtPlot::yRight,false); connect(d_panner, SIGNAL(panned(int, int)), multiLayer(), SLOT(notifyChanges())); } else { cnvs->setCursor(Qt::arrowCursor);