mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-13 19:31:46 +00:00
Fix resumeOnStart option
This commit is contained in:
6
menu.js
6
menu.js
@ -69,10 +69,10 @@ const mainMenuTemplate = (win) => [
|
||||
{
|
||||
label: "Resume last song when app starts",
|
||||
type: "checkbox",
|
||||
checked: config.get("options.resumeSongOnStart"),
|
||||
checked: config.get("options.resumeOnStart"),
|
||||
click: (item) => {
|
||||
config.set("options.resumeSongOnStart", item.checked);
|
||||
}
|
||||
config.set("options.resumeOnStart", item.checked);
|
||||
},
|
||||
},
|
||||
...(is.windows() || is.linux()
|
||||
? [
|
||||
|
||||
Reference in New Issue
Block a user