Utility/Win32: Generate only one WindowEvent_Moved per movement
When not using threaded windows. Fixed #105
This commit is contained in:
parent
581cc989de
commit
6ebe29ceb4
|
|
@ -789,6 +789,11 @@ namespace Nz
|
||||||
|
|
||||||
case WM_MOVE:
|
case WM_MOVE:
|
||||||
{
|
{
|
||||||
|
#if !NAZARA_UTILITY_THREADED_WINDOW
|
||||||
|
if (m_sizemove)
|
||||||
|
break;
|
||||||
|
#endif
|
||||||
|
|
||||||
RECT windowRect;
|
RECT windowRect;
|
||||||
GetWindowRect(m_handle, &windowRect);
|
GetWindowRect(m_handle, &windowRect);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue