Browse Source

Fixes in Path Handler

pull/650/head
jkuehner 11 years ago
parent
commit
ae02c8e8d8
  1. 2
      src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/Extensions/PathHandlerExtension.cs

2
src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/Extensions/PathHandlerExtension.cs

@ -580,7 +580,7 @@ namespace ICSharpCode.WpfDesign.Designer.Extensions @@ -580,7 +580,7 @@ namespace ICSharpCode.WpfDesign.Designer.Extensions
saveDesignItem = () =>
{
dd.Properties["StartPoint"].SetValue(((PathFigure)dd.Component).StartPoint);
dd.Properties["Segments"].SetValue(((PathFigure)dd.Component).Segments);
//dd.Properties["Segments"].SetValue(((PathFigure)dd.Component).Segments);
};
list.Add(new PathPoint(figure.StartPoint, figure, null, (p) => figure.StartPoint = p, saveDesignItem, shape));
foreach (var s in figure.Segments) {

Loading…
Cancel
Save