Skip to content

Commit

Permalink
is dark mode typo correction
Browse files Browse the repository at this point in the history
  • Loading branch information
swyxio committed Aug 3, 2023
1 parent d7c1a77 commit 1b384f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ app.on('ready', () => {
label: 'Toggle Dark Mode',
accelerator: 'CommandorControl+Shift+L',
type: 'checkbox',
checked: store.get('darkMode', false),
checked: store.get('isDarkMode', false),
click: () => {
store.set('darkMode', !store.get('darkMode', false));
store.set('isDarkMode', !store.get('isDarkMode', false));
setTimeout(() => {
window.reload();
}, 100);
Expand Down

0 comments on commit 1b384f2

Please sign in to comment.