Skip to content
Snippets Groups Projects
Commit 5ba65fb7 authored by akshitkrnagpal's avatar akshitkrnagpal Committed by Saúl Ibarra Corretgé
Browse files

Show window once ready-to-show

parent d0b5e0ce
No related branches found
No related tags found
No related merge requests found
......@@ -91,6 +91,7 @@ function createJitsiMeetWindow() {
height: jitsiMeetWindowState.height,
minWidth: 800,
minHeight: 600,
show: false,
titleBarStyle: 'hidden',
webPreferences: {
nativeWindowOpen: true
......@@ -116,6 +117,9 @@ function createJitsiMeetWindow() {
jitsiMeetWindow.on('closed', () => {
jitsiMeetWindow = null;
});
jitsiMeetWindow.once('ready-to-show', () => {
jitsiMeetWindow.show();
});
}
// Start the application:
......
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