Skip to content

Commit

Permalink
style: setters ordering, continuous
Browse files Browse the repository at this point in the history
  • Loading branch information
duzda committed Aug 15, 2024
1 parent b040628 commit 92fc36e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ const loadFromFile = async (file: string) => {
if (!err) {
currentSettings = JSON.parse(data);

OnSet.enableTray(currentSettings.enableTray);
OnSet.closeToTray(currentSettings.closeToTray);
OnSet.deemixIntegration(currentSettings.deemixIntegration);
OnSet.discordRPC(currentSettings.discordRPC);
OnSet.enableTray(currentSettings.enableTray);
OnSet.volumePower(currentSettings.volumePower);
OnSet.discordRPC(currentSettings.discordRPC);
}
});
};
Expand Down

0 comments on commit 92fc36e

Please sign in to comment.