Really fix line cursor to mouse cursor sync :)

This commit is contained in:
Mark Watkins 2014-08-06 13:33:20 +10:00
parent 0b4a41a9c5
commit 554132d1c5

View File

@ -704,7 +704,7 @@ void gGraph::mouseMoveEvent(QMouseEvent *event)
double xmult = xx / double(w);
{
xmult = (m_blockzoom ? (rmax_x - rmin_x) : (max_x - min_x)) / w;
xmult = (m_blockzoom ? double(rmax_x - rmin_x) : double(max_x - min_x)) / double(w);
double a = x;