File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 107
107
xlink:href ="#download_arrow "> </ use >
108
108
</ svg >
109
109
</ 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 " >
111
111
< span > Restore wallet</ span >
112
112
< svg class ="svg-restore-dims ">
113
113
< use xmlns:xlink ="http://www.w3.org/1999/xlink " xlink:href ="#restore "> </ use >
Original file line number Diff line number Diff line change @@ -106,11 +106,11 @@ app.on('activate', function () {
106
106
107
107
function createWalletWindow ( address ) {
108
108
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 ;
111
111
walletWindow = new BrowserWindow ( {
112
- width : heigth ,
113
- height : width ,
112
+ width : width ,
113
+ height : height ,
114
114
show : false ,
115
115
icon : __dirname + '/Bitcoen.png' ,
116
116
webPreferences : {
@@ -149,7 +149,7 @@ function startCore() {
149
149
const fs = require ( 'fs' ) ;
150
150
let path = '../' ;
151
151
if ( ! fs . existsSync ( '../main.js' ) ) {
152
- path = process . platform === 'darwin' ? '../../../../core/' : '../core/' ;
152
+ path = process . platform === 'darwin' ? '../../../../core/' : '../core/' ;
153
153
}
154
154
core = spawn ( 'node' , [ 'main.js' ] , { cwd : path } ) ;
155
155
You can’t perform that action at this time.
0 commit comments