Skip to content

Commit

Permalink
fix(macos): The display of the tray (#140)
Browse files Browse the repository at this point in the history
Only show one icon to take up less space
  • Loading branch information
XMLHexagram authored Dec 1, 2024
1 parent 1052bdf commit 8a6e6d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ void main(List<String> arguments) async {
);

await systemTray.initSystemTray(
title: 'Rune',
title: Platform.isMacOS ? null : 'Rune',
iconPath: TrayManager.getTrayIconPath(),
isTemplate: true,
);
Expand Down

0 comments on commit 8a6e6d7

Please sign in to comment.