mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Really fix line cursor to mouse cursor sync :)
This commit is contained in:
parent
0b4a41a9c5
commit
554132d1c5
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user