Avoid delayed displaying of sources

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-02-09 13:07:23 +01:00
parent 22dfa91631
commit 98e602f544
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 9 additions and 0 deletions

View File

@ -85,6 +85,15 @@ export default class DesktopCapturerSourcePicker extends React.Component<
}
componentDidMount() {
// setInterval() first waits and then executes, therefore
// we call getDesktopCapturerSources() here without any delay.
// Otherwise the dialog would be left empty for some time.
getDesktopCapturerSources().then((result) => {
this.setState({
sources: result,
});
});
// We update the sources every 500ms to get newer thumbnails
this.interval = setInterval(async () => {
this.setState({