Skip to content

Commit

Permalink
Merge pull request #59 from nebel/avoid-dtr-update
Browse files Browse the repository at this point in the history
  • Loading branch information
slotthhy authored Jul 18, 2024
2 parents fa04005 + 2a7c7dc commit 2737d2c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Orchestrion/OrchestrionPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,9 @@ private void PerformEcho()

private void CheckDtr()
{
_dtrEntry.Shown = Configuration.Instance.ShowSongInNative;
var show = Configuration.Instance.ShowSongInNative;
if (_dtrEntry.Shown != show)
_dtrEntry.Shown = show;
}

private void UpdateSettings()
Expand Down

0 comments on commit 2737d2c

Please sign in to comment.