mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Add a settings store check to make the menu code easy to find again
... and because we probably should check this...
This commit is contained in:
parent
e52c7fe03a
commit
b2bf5aacc0
1 changed files with 2 additions and 1 deletions
|
@ -110,7 +110,8 @@ const WidgetContextMenu: React.FC<IProps> = ({
|
|||
}
|
||||
|
||||
let snapshotButton;
|
||||
if (widgetMessaging?.hasCapability(MatrixCapabilities.Screenshots)) {
|
||||
const screenshotsEnabled = SettingsStore.getValue("enableWidgetScreenshots");
|
||||
if (screenshotsEnabled && widgetMessaging?.hasCapability(MatrixCapabilities.Screenshots)) {
|
||||
const onSnapshotClick = () => {
|
||||
widgetMessaging?.takeScreenshot().then(data => {
|
||||
dis.dispatch({
|
||||
|
|
Loading…
Reference in a new issue