swap maximise buttons

This commit is contained in:
dragonwocky 2020-07-09 16:55:16 +10:00
parent 582a8cc642
commit 633a4250d1
Signed by: dragonwocky
GPG Key ID: C7A48B7846AA706D
5 changed files with 4 additions and 9 deletions

View File

@ -15,7 +15,7 @@ but can still easily be enabled by following instructions in the [docs](README.m
- bugfix: odd mix of `\\` and `/` being used for windows filepaths. - bugfix: odd mix of `\\` and `/` being used for windows filepaths.
- bugfix: app no longer crashes when sidebar is toggled. - bugfix: app no longer crashes when sidebar is toggled.
known remaining/confirmed issues: known/confirmed remaining issues:
- russian symbols not supported by UTF-8 - russian symbols not supported by UTF-8

View File

@ -23,7 +23,7 @@ better with the OS while not being out-of-place in notion).</li>
<li>bugfix: odd mix of <code>\\</code> and <code>/</code> being used for windows filepaths.</li> <li>bugfix: odd mix of <code>\\</code> and <code>/</code> being used for windows filepaths.</li>
<li>bugfix: app no longer crashes when sidebar is toggled.</li> <li>bugfix: app no longer crashes when sidebar is toggled.</li>
</ul> </ul>
<p>known remaining/confirmed issues:</p> <p>known/confirmed remaining issues:</p>
<ul> <ul>
<li>russian symbols not supported by UTF-8</li> <li>russian symbols not supported by UTF-8</li>
</ul> </ul>

View File

@ -1,3 +1,3 @@
<svg width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.1311 225.96V76.72H84.5111V8.07999H233.751V157.32H165.371V225.96H16.1311ZM110.771 53.58V76.72H165.371V131.32H207.491V53.58H110.771ZM42.3911 199.96H139.111V122.22H42.3911V199.96Z" fill="black"/> <path d="M14.7346 227.26V7.03998H235.215V227.26H14.7346ZM46.4546 195.8H203.495V70.48H46.4546V195.8Z" fill="black"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 313 B

After

Width:  |  Height:  |  Size: 223 B

View File

@ -1,3 +1,3 @@
<svg width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg"> <svg width="250" height="250" viewBox="0 0 250 250" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M14.7346 227.26V7.03998H235.215V227.26H14.7346ZM46.4546 195.8H203.495V70.48H46.4546V195.8Z" fill="black"/> <path d="M16.1311 225.96V76.72H84.5111V8.07999H233.751V157.32H165.371V225.96H16.1311ZM110.771 53.58V76.72H165.371V131.32H207.491V53.58H110.771ZM42.3911 199.96H139.111V122.22H42.3911V199.96Z" fill="black"/>
</svg> </svg>

Before

Width:  |  Height:  |  Size: 223 B

After

Width:  |  Height:  |  Size: 313 B

View File

@ -47,7 +47,6 @@ function enhancements() {
contextMenu.getMenuItemById('startup').checked contextMenu.getMenuItemById('startup').checked
? electron_1.app.setLoginItemSettings({ openAtLogin: true }) ? electron_1.app.setLoginItemSettings({ openAtLogin: true })
: electron_1.app.setLoginItemSettings({ openAtLogin: false }); : electron_1.app.setLoginItemSettings({ openAtLogin: false });
tray.setContextMenu(contextMenu);
}, },
}, },
{ {
@ -57,7 +56,6 @@ function enhancements() {
checked: store.openhidden, checked: store.openhidden,
click: () => { click: () => {
store.openhidden = contextMenu.getMenuItemById('openhidden').checked; store.openhidden = contextMenu.getMenuItemById('openhidden').checked;
tray.setContextMenu(contextMenu);
}, },
}, },
{ {
@ -67,7 +65,6 @@ function enhancements() {
checked: store.maximized, checked: store.maximized,
click: () => { click: () => {
store.maximized = contextMenu.getMenuItemById('maximized').checked; store.maximized = contextMenu.getMenuItemById('maximized').checked;
tray.setContextMenu(contextMenu);
}, },
}, },
{ {
@ -77,7 +74,6 @@ function enhancements() {
checked: store.tray, checked: store.tray,
click: () => { click: () => {
store.tray = contextMenu.getMenuItemById('tray').checked; store.tray = contextMenu.getMenuItemById('tray').checked;
tray.setContextMenu(contextMenu);
}, },
}, },
{ {
@ -88,7 +84,6 @@ function enhancements() {
click: () => { click: () => {
store.theme = contextMenu.getMenuItemById('theme').checked; store.theme = contextMenu.getMenuItemById('theme').checked;
electron_1.BrowserWindow.getAllWindows().forEach((win) => win.reload()); electron_1.BrowserWindow.getAllWindows().forEach((win) => win.reload());
tray.setContextMenu(contextMenu);
}, },
}, },
{ {