Skip to content

Commit

Permalink
Editable Brushes' Opacity Incorrectly set to 1 #12
Browse files Browse the repository at this point in the history
  • Loading branch information
Lacro59 committed Jan 26, 2021
1 parent 754a9ba commit a295aeb
Show file tree
Hide file tree
Showing 4 changed files with 275 additions and 39 deletions.
1 change: 1 addition & 0 deletions Models/ThemeConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class ElementConstants
public string Name { get; set; }
public string TypeResource { get; set; }
public dynamic Element { get; set; }
public double Opacity { get; set; } = 1;
}

public class ThemeConstantsDefined
Expand Down
1 change: 1 addition & 0 deletions Models/ThemeElement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ public class ThemeElement
public string Name { get; set; }
public string Description { get; set; } = string.Empty;
public dynamic Element { get; set; }
public double Opacity { get; set; } = 1;
public ThemeSliderLimit themeSliderLimit { get; set; } = new ThemeSliderLimit();
}

Expand Down
Loading

0 comments on commit a295aeb

Please sign in to comment.