mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix pinch gestures so that spreading fingers zooms in.
This commit is contained in:
parent
f865b37102
commit
20b5ae454c
@ -658,7 +658,7 @@ bool gGraphView::pinchTriggered(QPinchGesture * gesture)
|
|||||||
double ww = double(origin_px) / double(width);
|
double ww = double(origin_px) / double(width);
|
||||||
double origin = ww * span;
|
double origin = ww * span;
|
||||||
|
|
||||||
double q = span * gesture->totalScaleFactor();
|
double q = span / gesture->totalScaleFactor();
|
||||||
|
|
||||||
if (q > hardspan) { q = hardspan; }
|
if (q > hardspan) { q = hardspan; }
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user