mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 18:41:47 +00:00
11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
module.exports = (win, options) => [
|
|
{
|
|
label: "Arrowkeys controls",
|
|
type: "checkbox",
|
|
checked: !!options.arrowsShortcut,
|
|
click: (item) => {
|
|
win.webContents.send("setArrowsShortcut", item.checked);
|
|
}
|
|
}
|
|
];
|