diff --git a/bbcode/Editor.vue b/bbcode/Editor.vue index fa59003..58c4301 100644 --- a/bbcode/Editor.vue +++ b/bbcode/Editor.vue @@ -137,7 +137,7 @@ onKeyDown(e: KeyboardEvent): void { const key = getKey(e); - if(e.ctrlKey && !e.shiftKey && key !== 'Control') { //tslint:disable-line:curly + if((e.metaKey || e.ctrlKey) && !e.shiftKey && key !== 'Control' && key !== 'Meta') { //tslint:disable-line:curly for(const button of this.buttons) if(button.key === key) { e.stopPropagation(); diff --git a/chat/ConversationSettings.vue b/chat/ConversationSettings.vue index 8bcfc8d..e86bde1 100644 --- a/chat/ConversationSettings.vue +++ b/chat/ConversationSettings.vue @@ -16,10 +16,15 @@ +