From 26429bf20947a5f16ab47308c1bba4296f1f6d9a Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Sat, 13 Feb 2021 13:25:46 +0100 Subject: [PATCH] removed toolbar buttons from touchbar --- terminus-core/src/services/touchbar.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/terminus-core/src/services/touchbar.service.ts b/terminus-core/src/services/touchbar.service.ts index 40162efa..5bd72c74 100644 --- a/terminus-core/src/services/touchbar.service.ts +++ b/terminus-core/src/services/touchbar.service.ts @@ -94,9 +94,9 @@ export class TouchbarService { const touchBar = new this.electron.TouchBar({ items: [ this.tabsSegmentedControl, - new this.electron.TouchBar.TouchBarSpacer({ size: 'flexible' }), - new this.electron.TouchBar.TouchBarSpacer({ size: 'small' }), - this.buttonsSegmentedControl, + // new this.electron.TouchBar.TouchBarSpacer({ size: 'flexible' }), + // new this.electron.TouchBar.TouchBarSpacer({ size: 'small' }), + // this.buttonsSegmentedControl, ], }) this.hostApp.setTouchBar(touchBar)