Skip to content

Commit

Permalink
πŸ‘©β€πŸ‘¦ Disable default menu bar
Browse files Browse the repository at this point in the history
  • Loading branch information
albertzak committed Jul 11, 2019
1 parent 84f77c4 commit 9361fd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion app/electron/main/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.paths.push(path.resolve('../node_modules'))
module.paths.push(path.resolve(__dirname, '..', '..', '..', '..', 'resources', 'app', 'node_modules'))
module.paths.push(path.resolve(__dirname, '..', '..', '..', '..', 'resources', 'app.asar', 'node_modules'))

const { app, ipcMain, crashReporter } = require('electron')
const { app, Menu, ipcMain, crashReporter } = require('electron')
const { init } = require('@sentry/electron')

const SENTRY_DSN_URL = 'https://6af65eb19a37410f968d4e602ce572d7@sentry.io/62218'
Expand All @@ -29,6 +29,8 @@ const logger = require('./logger')
logger.start()

const start = () => {
Menu.setApplicationMenu(null)

app.on('ready', () => {
const updater = require('./updater')
const window = require('./window')
Expand Down
2 changes: 1 addition & 1 deletion app/electron/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "rosalind",
"productName": "Rosalind",
"version": "0.0.203",
"version": "0.0.204",
"private": true,
"description": "Rosalind",
"author": {
Expand Down

0 comments on commit 9361fd6

Please sign in to comment.