Browse Source

Modified precision for element positioning and boundaries to use 0 decimals.

pull/509/head
gumme 11 years ago
parent
commit
f071ff5618
  1. 4
      src/AddIns/DisplayBindings/WpfDesign/WpfDesign/Project/PlacementInformation.cs

4
src/AddIns/DisplayBindings/WpfDesign/WpfDesign/Project/PlacementInformation.cs

@ -28,9 +28,9 @@ namespace ICSharpCode.WpfDesign
{ {
/// <summary> /// <summary>
/// The designer rounds bounds to this number of digits to avoid floating point errors. /// The designer rounds bounds to this number of digits to avoid floating point errors.
/// Value: 1 /// Value: 0
/// </summary> /// </summary>
public const int BoundsPrecision = 1; public const int BoundsPrecision = 0;
Rect originalBounds, bounds; Rect originalBounds, bounds;
readonly DesignItem item; readonly DesignItem item;

Loading…
Cancel
Save