Skip to content

Commit 077ad22

Browse files
committed
fix(macOS): Only show services in Touch Bar that should be visible
closes #1627
1 parent e34fb44 commit 077ad22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/TouchBar.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default class FranzTouchBar {
2929
const { TouchBarButton, TouchBarSpacer } = TouchBar;
3030

3131
const buttons = [];
32-
this.stores.services.enabled.forEach(((service) => {
32+
this.stores.services.allDisplayed.forEach(((service) => {
3333
buttons.push(new TouchBarButton({
3434
label: `${service.name}${service.unreadDirectMessageCount > 0
3535
? ' 🔴' : ''} ${service.unreadDirectMessageCount === 0

0 commit comments

Comments
 (0)