Browse Source

Fixes for Path Converter

pull/633/head
jkuehner 11 years ago
parent
commit
88976b9b64
  1. 2
      src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/Extensions/PathContextMenu.xaml.cs

2
src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/Extensions/PathContextMenu.xaml.cs

@ -101,7 +101,7 @@ namespace ICSharpCode.WpfDesign.Designer.Extensions @@ -101,7 +101,7 @@ namespace ICSharpCode.WpfDesign.Designer.Extensions
{
var sDes = designItem.Services.Component.RegisterComponentForDesigner(s.Clone());
if (((PathSegment)s).IsStroked)
if (!((PathSegment)s).IsStroked)
sDes.Properties[PathSegment.IsStrokedProperty].SetValue(((PathSegment)s).IsStroked);
if (((PathSegment)s).IsSmoothJoin)
sDes.Properties[PathSegment.IsSmoothJoinProperty].SetValue(((PathSegment)s).IsSmoothJoin);

Loading…
Cancel
Save