Skip to content

Commit 9d9f556

Browse files
committed
Fixes
1 parent 4549430 commit 9d9f556

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build/dumb

Whitespace-only changes.

frontend/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
xlink:href="#download_arrow"></use>
108108
</svg>
109109
</a>
110-
<a href="#" class="balance-btn btn btn-dark-tr walletButton">
110+
<a href="#" class="balance-btn btn btn-dark-tr walletButton" style="display: none">
111111
<span>Restore wallet</span>
112112
<svg class="svg-restore-dims">
113113
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#restore"></use>

shell/build/dumb

Whitespace-only changes.

shell/main.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ app.on('activate', function () {
106106

107107
function createWalletWindow(address) {
108108

109-
let height = path = process.platform === 'darwin'?840:1024;
110-
let width = path = process.platform === 'darwin'?650:768;
109+
let width = process.platform === 'darwin' ? 840 : 970;
110+
let height = process.platform === 'darwin' ? 650 : 703;
111111
walletWindow = new BrowserWindow({
112-
width: heigth,
113-
height: width,
112+
width: width,
113+
height: height,
114114
show: false,
115115
icon: __dirname + '/Bitcoen.png',
116116
webPreferences: {
@@ -149,7 +149,7 @@ function startCore() {
149149
const fs = require('fs');
150150
let path = '../';
151151
if(!fs.existsSync('../main.js')) {
152-
path = process.platform === 'darwin'?'../../../../core/': '../core/';
152+
path = process.platform === 'darwin' ? '../../../../core/' : '../core/';
153153
}
154154
core = spawn('node', ['main.js'], {cwd: path});
155155

0 commit comments

Comments
 (0)