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