Merge pull request #1 from Ether1Project/master

Merge Changes
This commit is contained in:
newCodeRunner
2020-12-08 16:51:17 +05:00
committed by GitHub
2 changed files with 3 additions and 6 deletions

View File

@@ -6186,19 +6186,16 @@ input[type=checkbox]:not(:disabled)~.lever:active:before, input[type=checkbox]:n
background-color: #949494 background-color: #949494
} }
select {}
select.browser-default { select.browser-default {
display: block display: block
} }
select { select {
background-color: #fff; background-color: #fff;
color: #000;
width: 100%; width: 100%;
padding: 5px;
border: 3px solid #840032; border: 3px solid #840032;
height: 30px; height: 30px;
padding-top: 35px;
margin-top: 10px; margin-top: 10px;
} }

View File

@@ -13,7 +13,7 @@ class Accounts {
return path.join(os.homedir(), "Library", "Ether1", "keystore"); return path.join(os.homedir(), "Library", "Ether1", "keystore");
break; break;
default: 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; event.returnValue = true;
}); });
EthoAccounts = new Accounts(); EthoAccounts = new Accounts();