Fix #31897: Ctrl+Click in 'Hue Correct' Node Adds in Wrong Location

Misusage of X/Y coords, ancient one!
This commit is contained in:
Sergey Sharybin 2012-07-26 12:04:11 +00:00
parent f39a21c36f
commit 2b8fdedaf3

@ -3725,7 +3725,7 @@ static int ui_do_but_CURVE(bContext *C, uiBlock *block, uiBut *but, uiHandleButt
offsy = cumap->curr.ymin; offsy = cumap->curr.ymin;
if (event->ctrl) { if (event->ctrl) {
fx = ((float)my - but->x1) / zoomx + offsx; fx = ((float)mx - but->x1) / zoomx + offsx;
fy = ((float)my - but->y1) / zoomy + offsy; fy = ((float)my - but->y1) / zoomy + offsy;
curvemap_insert(cuma, fx, fy); curvemap_insert(cuma, fx, fy);