File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11module . exports = {
22 ALWAYSONTOP_DISMISSED : 'dismissed' ,
33 ALWAYSONTOP_WILL_CLOSE : 'will-close' ,
4+ ALWAYSONTOP_DOUBLE_CLICK : 'double-click' ,
45 SIZE : {
56 width : 320 ,
67 height : 180
Original file line number Diff line number Diff line change @@ -6,7 +6,12 @@ const os = require('os');
66const path = require ( 'path' ) ;
77const log = require ( 'jitsi-meet-logger' ) ;
88
9- const { ALWAYSONTOP_DISMISSED , ALWAYSONTOP_WILL_CLOSE , SIZE } = require ( './constants' ) ;
9+ const {
10+ ALWAYSONTOP_DISMISSED ,
11+ ALWAYSONTOP_DOUBLE_CLICK ,
12+ ALWAYSONTOP_WILL_CLOSE ,
13+ SIZE
14+ } = require ( './constants' ) ;
1015
1116/**
1217 * The logger instance
@@ -369,6 +374,7 @@ class AlwaysOnTop extends EventEmitter {
369374 this . logInfo ( '_setupAlwaysOnTopWindow: ondblclick' ) ;
370375 this . _hideAlwaysOnTopWindow ( ) ;
371376 this . _jitsiMeetElectronWindow . show ( ) ;
377+ this . emit ( ALWAYSONTOP_DOUBLE_CLICK ) ;
372378 this . logInfo ( '_setupAlwaysOnTopWindow: ondblclick end' ) ;
373379 } ,
374380 /**
You can’t perform that action at this time.
0 commit comments