OK In progress...

This commit is contained in:
Kolan Sh 2018-01-19 14:17:57 +03:00
parent 715d4185b8
commit 54d805fc36
1 changed files with 2 additions and 2 deletions

View File

@ -265,8 +265,8 @@ namespace CairoChart {
*/
public virtual void move (Point delta) {
var d = delta;
d.x /= plarea.width; d.x *= - 1.0;
d.y /= plarea.height; d.y *= - 1.0;
d.x /= -plarea.width;
d.y /= -plarea.height;
var rzxmin = zoom.x, rzxmax = zoom.x + zoom.width, rzymin = zoom.y, rzymax = zoom.y + zoom.height;
zoom_out();
d.x *= plarea.width;