Skip to content

Commit

Permalink
Fix missing use preset location checking on display settings change
Browse files Browse the repository at this point in the history
  • Loading branch information
ReinforceZwei committed Jan 29, 2024
1 parent 928d403 commit 85e98c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion LittleClock2/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,10 @@ private void OnExitMenuClicked(object? sender, EventArgs e)

private void OnDisplaySettingsChange(object? sender, EventArgs e)
{
UpdateWindowRelativeLocation();
if (settings.UsePresetLocation)
{
UpdateWindowRelativeLocation();
}
}

private void MainWin_FormClosing(object sender, FormClosingEventArgs e)
Expand Down

0 comments on commit 85e98c2

Please sign in to comment.