Browse Source

AGT-113

v0.25
pbca26 7 years ago
parent
commit
1dfab33077
  1. 1
      gui/startup/app-settings.html
  2. 2
      main.js
  3. 2
      routes/shepherd/binsTestUtil.js

1
gui/startup/app-settings.html

@ -36,6 +36,7 @@
<div
id="debugOverlay"
class="debug-overlay hide"></div>
<div class="padding-top-40">Any changes to app config require app restart!</div>
<div class="settings-buttons-block">
<button
onClick="testBins('komodod')"

2
main.js

@ -308,7 +308,7 @@ function createAppSettingsWindow() {
// initialise window
appSettingsWindow = new BrowserWindow({ // dirty hack to prevent main window flash on quit
width: 750,
height: 570,
height: 610,
frame: false,
icon: agamaIcon,
show: false,

2
routes/shepherd/binsTestUtil.js

@ -214,7 +214,7 @@ module.exports = (shepherd) => {
// komodod datadir location test
shepherd.testLocation = (path) => {
return new shepherd.Promise((resolve, reject) => {
if (shepherd.path.indexOf(' ') > -1) {
if (path.indexOf(' ') > -1) {
shepherd.log(`error testing path ${path}`);
resolve(-1);
} else {

Loading…
Cancel
Save