Flashing rects are no longer constrained to even-numbered pixels on the

y axis; fixes bug #255, from Nic


git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@949 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
gewlitys
2003-05-10 19:53:10 +00:00
parent 2112a37f58
commit 4eeaa8e1b0
2 changed files with 2 additions and 3 deletions
+2
View File
@@ -1,4 +1,6 @@
Changes towards version 0.3:
- Flashing rects are no longer constrained to even-numbered pixels on the
y axis; fixes bug #255, from Nic
- Fixed minor glitches in main window borders (bug #307 parts 1,2,3) -Mika
- There's now space before and after : in coordinates (bug #307 part 6),
from Paxtez
-3
View File
@@ -1403,10 +1403,7 @@ SetFlashRect (PRECT pRect, FRAME f)
flash_rect1 = *pRect;
flash_rect1.corner.x += clip_r.corner.x;
flash_rect1.corner.y += clip_r.corner.y;
flash_rect1.extent.height += flash_rect.corner.y & 1;
flash_rect1.corner.y &= ~1;
create_flash = 1;
}
LockMutex (flash_mutex);