mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-12 10:54:55 +08:00
fix: spectrum count is not updating when chaning amount
This commit is contained in:
@@ -832,6 +832,14 @@ namespace BetterLyrics.WinUI3.Controls
|
||||
_isLayoutChanged = true;
|
||||
}
|
||||
}
|
||||
else if(message.Sender == LyricsWindowStatus?.LyricsBackgroundSettings)
|
||||
{
|
||||
if (message.PropertyName == nameof(LyricsBackgroundSettings.SpectrumCount))
|
||||
{
|
||||
_spectrumAnalyzer?.StopCapture();
|
||||
_spectrumAnalyzer?.StartCapture();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void Receive(PropertyChangedMessage<double> message)
|
||||
|
||||
Reference in New Issue
Block a user