Fix pinch gestures so that spreading fingers zooms in.

This commit is contained in:
sawinglogz 2020-01-27 15:04:54 -05:00
parent f865b37102
commit 20b5ae454c

View File

@ -658,7 +658,7 @@ bool gGraphView::pinchTriggered(QPinchGesture * gesture)
double ww = double(origin_px) / double(width);
double origin = ww * span;
double q = span * gesture->totalScaleFactor();
double q = span / gesture->totalScaleFactor();
if (q > hardspan) { q = hardspan; }