Skip to content

Commit

Permalink
ui: set titlebar style to hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
saghul authored and hristoterezov committed Feb 7, 2017
1 parent 264ee48 commit 757d77b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ function setAPPListeners () {
* Opens new window with index.html(Jitsi Meet is loaded in iframe there).
*/
function createJitsiMeetWindow () {
jitsiMeetWindow = new BrowserWindow({width: 800, height: 600});
jitsiMeetWindow =
new BrowserWindow({width: 800, height: 600, titleBarStyle: 'hidden'});
jitsiMeetWindow.loadURL(indexURL);

jitsiMeetWindow.on("closed", () => {
Expand Down

0 comments on commit 757d77b

Please sign in to comment.