Skip to content

Commit

Permalink
rename const
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitzunu committed Jul 13, 2020
1 parent 9d45e15 commit 3628f4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ try {
createWindow()

// Navigation Top Bar
const navigation: Electron.MenuItemConstructorOptions[] = [
const navMenu: Electron.MenuItemConstructorOptions[] = [
{
label: app.name,
submenu: [
Expand Down Expand Up @@ -165,7 +165,7 @@ try {
},
]

const menu = Menu.buildFromTemplate(navigation)
const menu = Menu.buildFromTemplate(navMenu)
Menu.setApplicationMenu(menu)

// Right-Click Menu
Expand Down

0 comments on commit 3628f4d

Please sign in to comment.