diff --git a/ChangeLog b/ChangeLog index d85b988b..72a0cd88 100644 --- a/ChangeLog +++ b/ChangeLog @@ -114,6 +114,9 @@ Changes since version 0.80.2: - Fixed bug with incorrect un-escaping if there is a dot in wm_class. - Updated Catalan translations (Ernest Adrogue ) - Updated Spanish translation of WPrefs (Alberto Gimenez ) +- Fixed synchronization problem between hair cursor and mouse cursor in + wmagnify with mouse cursor at the screen edge (Jon Diercks ) + Changes since version 0.80.1: ............................. diff --git a/util/wmagnify.c b/util/wmagnify.c index dd2f3777..0ab49b79 100644 --- a/util/wmagnify.c +++ b/util/wmagnify.c @@ -232,7 +232,7 @@ updateImage(BufferData *data, int rx, int ry) for (x = 0; x < data->width; x++) { unsigned long pixel; - pixel = getpix(image, x-xoffs, y-yoffs, xoffs, yoffs); + pixel = getpix(image, x, y, xoffs, yoffs); if (drawpoint(data, pixel, x, y)) changedPixels++;