Skip to content

Commit

Permalink
opacity fixes #666
Browse files Browse the repository at this point in the history
  • Loading branch information
msarilar committed Nov 1, 2021
1 parent a5d30d7 commit 2477bdf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions EDEngineer/Views/Popups/Graphics/GraphicSettings.cs
Expand Up @@ -55,9 +55,9 @@ public double OpacityForEdit
get => opacity;
set
{
if (Math.Abs(value) < 1)
if (value < 0.1)
{
opacity = 1;
opacity = 0.1;
return;
}

Expand Down

0 comments on commit 2477bdf

Please sign in to comment.