Changeset 10511 for trunk/src/user32/wintrack.cpp
- Timestamp:
- Mar 12, 2004, 5:48:17 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/wintrack.cpp
r9951 r10511 694 694 if (HOOK_CallHooksA( WH_CBT, HCBT_MOVESIZE, (WPARAM)hwnd, (LPARAM)&lastsizingRect )) moved = FALSE; 695 695 696 SendMessageA( hwnd, WM_EXITSIZEMOVE, 0, 0 );697 SendMessageA( hwnd, WM_SETVISIBLE, !IsIconic(hwnd), 0L);698 699 696 /* window moved or resized */ 700 697 if (moved) … … 734 731 } 735 732 733 // Needs to be sent *after* changing the window position/size 734 SendMessageA( hwnd, WM_EXITSIZEMOVE, 0, 0 ); 735 SendMessageA( hwnd, WM_SETVISIBLE, !IsIconic(hwnd), 0L); 736 736 737 if (IsIconic(hwnd)) 737 738 {
Note:
See TracChangeset
for help on using the changeset viewer.