diff options
-rw-r--r-- | vendor/github.com/getlantern/systray/systray_darwin.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/getlantern/systray/systray_darwin.m b/vendor/github.com/getlantern/systray/systray_darwin.m index 3d92868..91cc0de 100644 --- a/vendor/github.com/getlantern/systray/systray_darwin.m +++ b/vendor/github.com/getlantern/systray/systray_darwin.m @@ -195,14 +195,14 @@ void runInMainThread(SEL method, id object) { void setIcon(const char* iconBytes, int length) { NSData* buffer = [NSData dataWithBytes: iconBytes length:length]; NSImage *image = [[NSImage alloc] initWithData:buffer]; - [image setSize:NSMakeSize(16, 16)]; + [image setSize:NSMakeSize(18, 18)]; runInMainThread(@selector(setIcon:), (id)image); } void setMenuItemIcon(const char* iconBytes, int length, int menuId) { NSData* buffer = [NSData dataWithBytes: iconBytes length:length]; NSImage *image = [[NSImage alloc] initWithData:buffer]; - [image setSize:NSMakeSize(16, 16)]; + [image setSize:NSMakeSize(18, 18)]; NSNumber *mId = [NSNumber numberWithInt:menuId]; runInMainThread(@selector(setMenuItemIcon:), @[image, (id)mId]); |