fix self loop indicator offset calculation
This commit is contained in:
xe7485 2016-04-20 12:47:26 -03:00
Родитель bcb1efdc04
Коммит 0a684cbffc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -644,7 +644,7 @@ namespace GraphX.Controls
var pt =
new Point(
sourcePos.X + SelfLoopIndicatorOffset.X - (hasNoTemplate ? SelfLoopIndicatorRadius : SelfLoopIndicator.DesiredSize.Width),
sourcePos.Y + SelfLoopIndicatorOffset.X - (hasNoTemplate ? SelfLoopIndicatorRadius : SelfLoopIndicator.DesiredSize.Height));
sourcePos.Y + SelfLoopIndicatorOffset.Y - (hasNoTemplate ? SelfLoopIndicatorRadius : SelfLoopIndicator.DesiredSize.Height));
//if we has no self looped edge template defined we'll use default built-in indicator
if (hasNoTemplate)