Utility/Win32: Generate only one WindowEvent_Moved per movement

When not using threaded windows.
Fixed #105
This commit is contained in:
Jérôme Leclercq 2016-11-04 23:18:36 +01:00
parent 581cc989de
commit 6ebe29ceb4
1 changed files with 5 additions and 0 deletions

View File

@ -789,6 +789,11 @@ namespace Nz
case WM_MOVE:
{
#if !NAZARA_UTILITY_THREADED_WINDOW
if (m_sizemove)
break;
#endif
RECT windowRect;
GetWindowRect(m_handle, &windowRect);