mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 10:23:33 +00:00
Fix mpv sample rate setting
- Fix default input value - Disable property on 0 value
This commit is contained in:
parent
48ef7a987f
commit
e45252d16c
2 changed files with 10 additions and 8 deletions
|
|
@ -127,7 +127,7 @@ const initialState: SettingsState = {
|
|||
fontContent: 'Poppins',
|
||||
playButtonBehavior: Play.NOW,
|
||||
showQueueDrawerButton: false,
|
||||
sideQueueType: 'sideDrawerQueue',
|
||||
sideQueueType: 'sideQueue',
|
||||
skipButtons: {
|
||||
enabled: false,
|
||||
skipBackwardSeconds: 5,
|
||||
|
|
@ -168,7 +168,7 @@ const initialState: SettingsState = {
|
|||
mpvProperties: {
|
||||
audioExclusiveMode: 'no',
|
||||
audioFormat: undefined,
|
||||
audioSampleRateHz: undefined,
|
||||
audioSampleRateHz: 0,
|
||||
gaplessAudio: 'weak',
|
||||
replayGainClip: true,
|
||||
replayGainFallbackDB: undefined,
|
||||
|
|
@ -309,7 +309,7 @@ const initialState: SettingsState = {
|
|||
disableAutoUpdate: false,
|
||||
exitToTray: false,
|
||||
minimizeToTray: false,
|
||||
windowBarStyle: Platform.WEB,
|
||||
windowBarStyle: isElectron() ? Platform.WINDOWS : Platform.WEB,
|
||||
},
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue