Wiring change detection to render process

This commit is contained in:
2025-06-19 20:03:02 -05:00
parent 5c19d82834
commit c599013af4
6 changed files with 40 additions and 15 deletions

View File

@@ -4,7 +4,7 @@ const { newtonFs } = require('./fs');
let config = {};
const loadsettings = () => {
const loadSettings = () => {
config = JSON.parse(
newtonFs.getSettingsConfigData()
);
@@ -38,7 +38,7 @@ const getIconPath = () => {
module.exports = {
settingsManager: {
getIconPath: getIconPath,
loadsettings: loadsettings,
loadSettings: loadSettings,
getConfig: getConfig,
saveConfig: saveConfig,
}