diff --git a/docs/labs.md b/docs/labs.md index 874018159d..34332f7ec3 100644 --- a/docs/labs.md +++ b/docs/labs.md @@ -12,14 +12,6 @@ dropped. Ask in the room if you are unclear about any details here.** A new version of the "Report" dialog that lets users send abuse reports directly to room moderators, if the room supports it. -## Matrix Spaces [MSC1772](https://github.com/matrix-org/matrix-doc/pull/1772) support (`feature_spaces`) - -Enables showing, using, creating, and managing spaces. Create Spaces from the all new Space Panel (to left of Room List). - -Incompatible with (will disable) `feature_custom_tags`, `feature_communities_v2_prototypes` and stable Communities/Groups support. - -Still in heavy development. - ## Render LaTeX maths in messages (`feature_latex_maths`) Enables rendering of LaTeX maths in messages using [KaTeX](https://katex.org/). LaTeX between single dollar-signs is interpreted as inline maths and double dollar-signs as display maths (i.e. centred on its own line). diff --git a/src/vector/platform/ElectronPlatform.tsx b/src/vector/platform/ElectronPlatform.tsx index 1f465ec7e9..4fcbbce398 100644 --- a/src/vector/platform/ElectronPlatform.tsx +++ b/src/vector/platform/ElectronPlatform.tsx @@ -598,7 +598,7 @@ export default class ElectronPlatform extends VectorBasePlatform { if (!handled && // ideally we would use SpaceStore.spacesEnabled here but importing SpaceStore in this platform // breaks skinning as the platform is instantiated prior to the skin being loaded - SettingsStore.getValue("feature_spaces") && + !SettingsStore.getValue("showCommunitiesInsteadOfSpaces") && ev.code.startsWith("Digit") && ev.code !== "Digit0" && // this is the shortcut for reset zoom, don't override it isOnlyCtrlOrCmdKeyEvent(ev)