Author: tkreuzer
Date: Sat May 24 10:19:01 2014
New Revision: 63429
URL:
http://svn.reactos.org/svn/reactos?rev=63429&view=rev
Log:
[MAGNIFY]
Update display even when mouse does not move. Patch by Andrea Faulds.
CORE-4739 #comment Committed in r63429, thanks. #resolve
Modified:
trunk/reactos/base/applications/magnify/magnifier.c
Modified: trunk/reactos/base/applications/magnify/magnifier.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/applications/magnify/…
==============================================================================
--- trunk/reactos/base/applications/magnify/magnifier.c [iso-8859-1] (original)
+++ trunk/reactos/base/applications/magnify/magnifier.c [iso-8859-1] Sat May 24 10:19:01
2014
@@ -353,22 +353,20 @@
//Update to new position
pMouse = pNewMouse;
cp = pNewMouse;
- Refresh();
}
else if (((pCaret.x != pNewCaret.x) || (pCaret.y != pNewCaret.y)) &&
bFollowCaret)
{
//Update to new position
pCaret = pNewCaret;
cp = pNewCaret;
- Refresh();
}
else if (((pFocus.x != pNewFocus.x) || (pFocus.y != pNewFocus.y)) &&
bFollowFocus)
{
//Update to new position
pFocus = pNewFocus;
cp = pNewFocus;
- Refresh();
}
+ Refresh();
}
break;
case WM_COMMAND: