mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 13:19:03 +00:00
fix icon size on mac
This commit is contained in:
parent
f459d10c39
commit
31c75c7d70
@ -15,7 +15,7 @@
|
||||
let tray;
|
||||
|
||||
function enhancements() {
|
||||
const { Tray, Menu } = require('electron'),
|
||||
const { Tray, Menu, nativeImage } = require('electron'),
|
||||
path = require('path'),
|
||||
store = require(path.join(__dirname, '..', 'store.js'))({
|
||||
config: 'user-preferences',
|
||||
@ -26,7 +26,12 @@ function enhancements() {
|
||||
theme: false,
|
||||
},
|
||||
});
|
||||
tray = new Tray(path.join(__dirname, 'logo.png'));
|
||||
tray = new Tray(
|
||||
new nativeImage.createFromPath(path.join(__dirname, 'logo.png')).resize({
|
||||
width: 16,
|
||||
height: 16,
|
||||
})
|
||||
);
|
||||
const contextMenu = Menu.buildFromTemplate([
|
||||
{
|
||||
id: 'startup',
|
||||
|
Loading…
Reference in New Issue
Block a user