Skip to content

Commit

Permalink
Merge pull request #27 from puppetsw/fix_26
Browse files Browse the repository at this point in the history
Initialized AcadLayer in DescriptionKey
  • Loading branch information
puppetsw authored Sep 29, 2022
2 parents 42f28e2 + 2ba0343 commit 4fc482f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/StringMaster/Models/DescriptionKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public sealed class DescriptionKey : ObservableObject, IEquatable<DescriptionKey
private string _layer = "0";
private double _midOrdinate = 0.01;
private AcadColor _acadColor = AcadColor.ByLayer;
private AcadLayer _acadLayer;
private AcadLayer _acadLayer = new();

/// <summary>
/// Gets the key value.
Expand Down

0 comments on commit 4fc482f

Please sign in to comment.