Skip to content

Commit

Permalink
apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
kashiken committed Jul 14, 2024
1 parent e1cc564 commit d07dcae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/webview/services/playerSettingsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ export default class PlayerSettingsService extends Service {
return this._matchFilterFrequencyToSpectrogram;
}
public set matchFilterFrequencyToSpectrogram(value: boolean) {
this._matchFilterFrequencyToSpectrogram = value === undefined ? false : value; // false by default
this._matchFilterFrequencyToSpectrogram =
value === undefined ? false : value; // false by default
this.dispatchEvent(
new CustomEvent(
EventType.PS_UPDATE_MATCH_FILTER_FREQUENCY_TO_SPECTROGRAM,
Expand Down

0 comments on commit d07dcae

Please sign in to comment.