Browse Source

Polyline -> Some extensions should not be disabled

pull/637/head
jkuehner 11 years ago
parent
commit
750928d082
  1. 3
      src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/Extensions/PolyLineHandlerExtension.cs

3
src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/Extensions/PolyLineHandlerExtension.cs

@ -38,7 +38,8 @@ namespace ICSharpCode.WpfDesign.Designer.Extensions
/// <summary> /// <summary>
/// Description of PolyLineHandlerExtension. /// Description of PolyLineHandlerExtension.
/// </summary> /// </summary>
[ExtensionFor(typeof(Polyline), OverrideExtensions = new Type[] { typeof(ResizeThumbExtension), typeof(SelectedElementRectangleExtension), typeof(CanvasPositionExtension), typeof(QuickOperationMenuExtension), typeof(RotateThumbExtension), typeof(RenderTransformOriginExtension), typeof(InPlaceEditorExtension), typeof(SizeDisplayExtension), typeof(SkewThumbExtension) })] [ExtensionFor(typeof(Polyline), OverrideExtensions = new Type[] { typeof(ResizeThumbExtension), typeof(QuickOperationMenuExtension), })]
[ExtensionFor(typeof(Polygon), OverrideExtensions = new Type[] { typeof(ResizeThumbExtension), typeof(QuickOperationMenuExtension), })]
internal class PolyLineHandlerExtension : LineExtensionBase, IKeyDown, IKeyUp internal class PolyLineHandlerExtension : LineExtensionBase, IKeyDown, IKeyUp
{ {
private readonly Dictionary<int, Bounds> _selectedThumbs = new Dictionary<int, Bounds>(); private readonly Dictionary<int, Bounds> _selectedThumbs = new Dictionary<int, Bounds>();

Loading…
Cancel
Save