From 9893fb51a77f5c7fabf731998284fbc8a696b859 Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Fri, 28 Jan 2022 23:23:40 +0100 Subject: [PATCH] linkifier: fixed "no modifier", removed ctrl on macOS --- .../src/components/terminalSettingsTab.component.pug | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tabby-terminal/src/components/terminalSettingsTab.component.pug b/tabby-terminal/src/components/terminalSettingsTab.component.pug index ad03567e..353ecdc5 100644 --- a/tabby-terminal/src/components/terminalSettingsTab.component.pug +++ b/tabby-terminal/src/components/terminalSettingsTab.component.pug @@ -107,8 +107,8 @@ div.mt-4 [(ngModel)]='config.store.clickableLinks.modifier', (ngModelChange)='config.save()', ) - option([value]='null', translate) No modifier - option(value='ctrlKey') Ctrl + option([ngValue]='null', translate) No modifier + option(value='ctrlKey', *ngIf='hostApp.platform !== Platform.macOS') Ctrl option(value='altKey') {{altKeyName}} option(value='shiftKey') Shift option(value='metaKey') {{metaKeyName}}