|
From: <xb...@us...> - 2013-06-27 15:53:40
|
Revision: 1836
http://sourceforge.net/p/scstudio/code/1836
Author: xborza
Date: 2013-06-27 15:53:36 +0000 (Thu, 27 Jun 2013)
Log Message:
-----------
bug #75(Race marks remain even after repaint) fixed
Modified Paths:
--------------
trunk/src/view/visio/addon/extract.cpp
Modified: trunk/src/view/visio/addon/extract.cpp
===================================================================
--- trunk/src/view/visio/addon/extract.cpp 2013-06-27 12:00:28 UTC (rev 1835)
+++ trunk/src/view/visio/addon/extract.cpp 2013-06-27 15:53:36 UTC (rev 1836)
@@ -55,12 +55,14 @@
case ST_TIME_INTERVAL:
case ST_TIME_DIRECTED:
case ST_TIME_ABSOLUTE:
+ //when user calls repaint function, ST_MARKER_EVENT shoud be removed too
+ case ST_MARKER_EVENT:
// known symbols will be repainted
selection->Select(shape, Visio::visSelect);
break;
case ST_PICTURE:
- case ST_MARKER_EVENT:
+ //case ST_MARKER_EVENT:
case ST_UNKNOWN:
// keep unknown and shapes not yet supported in msc.h
break;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|