Updated buttons.
This commit is contained in:
@@ -236,22 +236,22 @@ function createWindow(): void {
|
||||
submenu: [
|
||||
{
|
||||
label: "Alpha",
|
||||
checked: store.get("app.channel") === "alpha",
|
||||
onClick: (): void => {
|
||||
checked: autoUpdater.channel === "alpha",
|
||||
click: (): void => {
|
||||
checkForAppUpdates("alpha");
|
||||
},
|
||||
},
|
||||
{
|
||||
label: "Beta",
|
||||
checked: store.get("app.channel") === "beta",
|
||||
onClick: (): void => {
|
||||
checked: autoUpdater.channel === "beta",
|
||||
click: (): void => {
|
||||
checkForAppUpdates("beta");
|
||||
},
|
||||
},
|
||||
{
|
||||
label: "Latest",
|
||||
checked: store.get("app.channel") === "latest",
|
||||
onClick: (): void => {
|
||||
checked: autoUpdater.channel === "latest",
|
||||
click: (): void => {
|
||||
checkForAppUpdates("latest");
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user