1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-12-22 09:02:11 +03:00

Hide screenshare button in video rooms on Desktop (#9045)

* Hide screenshare button in video rooms on Desktop

* Fix tests
This commit is contained in:
Robin
2022-07-12 08:23:35 -04:00
committed by GitHub
parent e576347b62
commit 4dd74261b5
3 changed files with 11 additions and 1 deletions

View File

@@ -288,6 +288,10 @@ export default abstract class BasePlatform {
return false;
}
public supportsJitsiScreensharing(): boolean {
return true;
}
public overrideBrowserShortcuts(): boolean {
return false;
}