mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-25 18:30:18 -06:00
Merge pull request #1147 from johankwarnmarksymphony/sda-2754-2
fix: sda-2754, always quit red frame, and give the new red frame 300ms
This commit is contained in:
commit
c547175d42
@ -1214,7 +1214,12 @@ export class WindowHandler {
|
||||
if (source != null) {
|
||||
logger.info(`window-handler: screen-source-select`, source, id);
|
||||
|
||||
this.drawScreenShareIndicatorFrame(source);
|
||||
this.execCmd(this.screenShareIndicatorFrameUtil, []);
|
||||
const timeoutValue = 300;
|
||||
setTimeout(
|
||||
() => this.drawScreenShareIndicatorFrame(source),
|
||||
timeoutValue,
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user