Skip to content
Snippets Groups Projects
Commit da1b6add authored by Saúl Ibarra Corretgé's avatar Saúl Ibarra Corretgé Committed by Hristo Terezov
Browse files

Don't show the menu bar

parent f3b7b71c
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ const {
const path = require('path');
const URL = require('url');
const { app: APP, BrowserWindow } = electron;
const { app: APP, BrowserWindow, Menu } = electron;
/**
......@@ -81,6 +81,8 @@ function setAPPListeners() {
* Opens new window with index.html(Jitsi Meet is loaded in iframe there).
*/
function createJitsiMeetWindow() {
Menu.setApplicationMenu(null);
jitsiMeetWindow = new BrowserWindow(jitsiMeetWindowOptions);
jitsiMeetWindow.loadURL(indexURL);
initPopupsConfigurationMain(jitsiMeetWindow);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment