mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Fix Electron mac-specific shortcut being registered on Web too.
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
432098ddd2
commit
c1da3bf537
@ -36,17 +36,6 @@ import React from "react";
|
|||||||
const ipcRenderer = window.ipcRenderer;
|
const ipcRenderer = window.ipcRenderer;
|
||||||
const isMac = navigator.platform.toUpperCase().includes('MAC');
|
const isMac = navigator.platform.toUpperCase().includes('MAC');
|
||||||
|
|
||||||
// register Mac specific shortcuts
|
|
||||||
if (isMac) {
|
|
||||||
registerShortcut(Categories.NAVIGATION, {
|
|
||||||
keybinds: [{
|
|
||||||
modifiers: [Modifiers.COMMAND],
|
|
||||||
key: Key.COMMA,
|
|
||||||
}],
|
|
||||||
description: _td("Open user settings"),
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
function platformFriendlyName(): string {
|
function platformFriendlyName(): string {
|
||||||
// used to use window.process but the same info is available here
|
// used to use window.process but the same info is available here
|
||||||
if (navigator.userAgent.includes('Macintosh')) {
|
if (navigator.userAgent.includes('Macintosh')) {
|
||||||
@ -228,6 +217,17 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
|||||||
|
|
||||||
this.startUpdateCheck = this.startUpdateCheck.bind(this);
|
this.startUpdateCheck = this.startUpdateCheck.bind(this);
|
||||||
this.stopUpdateCheck = this.stopUpdateCheck.bind(this);
|
this.stopUpdateCheck = this.stopUpdateCheck.bind(this);
|
||||||
|
|
||||||
|
// register Mac specific shortcuts
|
||||||
|
if (isMac) {
|
||||||
|
registerShortcut(Categories.NAVIGATION, {
|
||||||
|
keybinds: [{
|
||||||
|
modifiers: [Modifiers.COMMAND],
|
||||||
|
key: Key.COMMA,
|
||||||
|
}],
|
||||||
|
description: _td("Open user settings"),
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async getConfig(): Promise<{}> {
|
async getConfig(): Promise<{}> {
|
||||||
|
Loading…
Reference in New Issue
Block a user