Utility/Win32: Generate only one WindowEvent_Moved per movement
When not using threaded windows. Fixed #105
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user