- Timestamp:
- Oct 25, 2001, 6:02:02 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/wintrack.cpp
r7189 r7208 325 325 SelectObject( hdc, hbrush ); 326 326 } 327 else DrawFocusRect( hdc, rect ); 327 else { 328 static RECT oldRect = {0}; 329 330 if(fRedraw && EqualRect(&oldRect, rect)) { 331 return; 332 } 333 334 if(fRedraw) { 335 DrawFocusRect( hdc, &oldRect ); 336 } 337 DrawFocusRect( hdc, rect ); 338 oldRect = *rect; 339 } 328 340 } 329 341
Note:
See TracChangeset
for help on using the changeset viewer.