Skip to content

Commit

Permalink
fix glitch (#10517)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykhailopylyp committed Mar 31, 2021
1 parent 9cf3b9f commit a91f74d
Showing 1 changed file with 6 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,9 @@ public bool IsCursorPositionRadioButtonChecked
if (value == true)
{
settings.Properties.Position = StartupPosition.Cursor;
_isCursorPositionRadioButtonChecked = value;
UpdateSettings();
}

_isCursorPositionRadioButtonChecked = value;

UpdateSettings();
}
}

Expand All @@ -282,11 +280,9 @@ public bool IsPrimaryMonitorPositionRadioButtonChecked
if (value == true)
{
settings.Properties.Position = StartupPosition.PrimaryMonitor;
_isPrimaryMonitorPositionRadioButtonChecked = value;
UpdateSettings();
}

_isPrimaryMonitorPositionRadioButtonChecked = value;

UpdateSettings();
}
}

Expand All @@ -302,11 +298,9 @@ public bool IsFocusPositionRadioButtonChecked
if (value == true)
{
settings.Properties.Position = StartupPosition.Focus;
_isFocusPositionRadioButtonChecked = value;
UpdateSettings();
}

_isFocusPositionRadioButtonChecked = value;

UpdateSettings();
}
}

Expand Down

0 comments on commit a91f74d

Please sign in to comment.