This commit is contained in:
Jacob Fink 2022-02-23 09:33:59 -05:00
parent ba7830acbe
commit cc64fc8b6e
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ export class WindowMenu implements IMenubarMenu {
}
get items(): MenuItemConstructorOptions[] {
var items = [this.minimize, this.hideToMenu, this.alwaysOnTop];
const items = [this.minimize, this.hideToMenu, this.alwaysOnTop];
if (isMac()) {
items.push(this.zoom, this.separator, this.bringAllToFront);