From 92f4ea91a2969bcce2a13826a8f0f4391fc72ff4 Mon Sep 17 00:00:00 2001 From: newCodeRunner <57590297+newCodeRunner@users.noreply.github.com> Date: Tue, 8 Dec 2020 15:57:10 +0500 Subject: [PATCH 1/2] Update accounts.js Fixes issue #62. --- modules/accounts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/accounts.js b/modules/accounts.js index 1002a9b..c5fe1b0 100755 --- a/modules/accounts.js +++ b/modules/accounts.js @@ -13,7 +13,7 @@ class Accounts { return path.join(os.homedir(), "Library", "Ether1", "keystore"); break; default: - return path.join(process.env.APPDATA, "Ether1", "keystore"); + return path.join(process.env.APPDATA.replace('Roaming', 'Local'), "Ether1", "keystore"); } } @@ -96,4 +96,4 @@ ipcMain.on("saveAccount", (event, arg) => { event.returnValue = true; }); -EthoAccounts = new Accounts(); \ No newline at end of file +EthoAccounts = new Accounts(); From 3ed7446b984020749b8f8417f8d91e5e90d5f8ae Mon Sep 17 00:00:00 2001 From: newCodeRunner <57590297+newCodeRunner@users.noreply.github.com> Date: Tue, 8 Dec 2020 16:24:49 +0500 Subject: [PATCH 2/2] Update materialize.min.css fixes issue #56 --- assets/styles/materialize.min.css | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/assets/styles/materialize.min.css b/assets/styles/materialize.min.css index 6db289f..4054769 100755 --- a/assets/styles/materialize.min.css +++ b/assets/styles/materialize.min.css @@ -6186,19 +6186,16 @@ input[type=checkbox]:not(:disabled)~.lever:active:before, input[type=checkbox]:n background-color: #949494 } -select {} - select.browser-default { display: block } select { background-color: #fff; + color: #000; width: 100%; - padding: 5px; border: 3px solid #840032; height: 30px; - padding-top: 35px; margin-top: 10px; }