[auth] Add monochrome icon style for macos tray (#6771)
## Description This fixes this issue https://github.com/ente-io/ente/issues/5173
This commit is contained in:
BIN
mobile/apps/auth/assets/icons/auth-icon-monochrome.png
Normal file
BIN
mobile/apps/auth/assets/icons/auth-icon-monochrome.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 28 KiB |
@@ -40,8 +40,10 @@ Future<void> initSystemTray() async {
|
||||
if (PlatformUtil.isMobile()) return;
|
||||
String path = Platform.isWindows
|
||||
? 'assets/icons/auth-icon.ico'
|
||||
: 'assets/icons/auth-icon.png';
|
||||
await trayManager.setIcon(path);
|
||||
: Platform.isMacOS
|
||||
? 'assets/icons/auth-icon-monochrome.png'
|
||||
: 'assets/icons/auth-icon.png';
|
||||
await trayManager.setIcon(path, isTemplate: true);
|
||||
Menu menu = Menu(
|
||||
items: [
|
||||
MenuItem(
|
||||
|
||||
Reference in New Issue
Block a user