|
From: <xb...@us...> - 2013-11-28 23:27:34
|
Revision: 1877
http://sourceforge.net/p/scstudio/code/1877
Author: xborza
Date: 2013-11-28 23:27:31 +0000 (Thu, 28 Nov 2013)
Log Message:
-----------
ordering arrow repaint correction
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-11-28 12:18:20 UTC (rev 1876)
+++ trunk/src/view/visio/addon/extract.cpp 2013-11-28 23:27:31 UTC (rev 1877)
@@ -662,7 +662,7 @@
}
TShapeType line_type = get_shape_type(line);
- if(line_type == ST_BMSC_ORDER_LINE)
+ if(line_type == ST_BMSC_ORDER_LINE || line_type == ST_BMSC_ORDER_ARROW)
{
// the position is determined from the X coordinate
if(pos1.m_x < pos2.m_x)
@@ -676,7 +676,7 @@
shapelist() << line);
}
}
- else if(line_type == ST_BMSC_ORDER_ARROW)
+ /*else if(line_type == ST_BMSC_ORDER_ARROW)
{
// the position is determined from the arrow
if(connect1->FromPart == visBegin && connect2->FromPart == visEnd)
@@ -691,7 +691,7 @@
<< "Cannot determine event order.",
shapelist() << line);
}
- }
+ }*/
else
{
// this should never happen
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|