mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[MAGNIFY]
Update display even when mouse does not move. Patch by Andrea Faulds. CORE-4739 #comment Committed in r63429, thanks. #resolve svn path=/trunk/; revision=63429
This commit is contained in:
parent
229b404fde
commit
bc9a62248c
1 changed files with 1 additions and 3 deletions
|
@ -353,22 +353,20 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|||
//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:
|
||||
|
|
Loading…
Reference in a new issue