Browse Source

Disabled warning "field is assigned but its value is never used" because we want to keep it for future use.

pull/660/head
gumme 11 years ago
parent
commit
5a12c7c1d1
  1. 2
      src/AddIns/DisplayBindings/WpfDesign/WpfDesign.Designer/Project/Extensions/PathHandlerExtension.cs

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

@ -160,7 +160,9 @@ namespace ICSharpCode.WpfDesign.Designer.Extensions @@ -160,7 +160,9 @@ namespace ICSharpCode.WpfDesign.Designer.Extensions
}
private readonly Dictionary<int, Bounds> _selectedThumbs = new Dictionary<int, Bounds>();
#pragma warning disable 0414 // For future use, disable Warning CS0414: The field is assigned but its value is never used
private bool _isDragging;
#pragma warning restore 0414
ZoomControl _zoom;
private List<PathPoint> pathPoints = null;

Loading…
Cancel
Save