|
@ -19,6 +19,7 @@ import javafx.application.Application; |
|
|
import javafx.scene.text.Font; |
|
|
import javafx.scene.text.Font; |
|
|
import javafx.stage.Stage; |
|
|
import javafx.stage.Stage; |
|
|
import org.controlsfx.glyphfont.GlyphFontRegistry; |
|
|
import org.controlsfx.glyphfont.GlyphFontRegistry; |
|
|
|
|
|
import org.controlsfx.tools.Platform; |
|
|
import org.slf4j.Logger; |
|
|
import org.slf4j.Logger; |
|
|
import org.slf4j.LoggerFactory; |
|
|
import org.slf4j.LoggerFactory; |
|
|
import org.slf4j.bridge.SLF4JBridgeHandler; |
|
|
import org.slf4j.bridge.SLF4JBridgeHandler; |
|
@ -79,6 +80,10 @@ public class MainApp extends Application { |
|
|
Config.get().setCoreWallet(""); |
|
|
Config.get().setCoreWallet(""); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if(Config.get().getHdCapture() == null && Platform.getCurrent() == Platform.OSX) { |
|
|
|
|
|
Config.get().setHdCapture(Boolean.TRUE); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
System.setProperty(Wallet.ALLOW_DERIVATIONS_MATCHING_OTHER_SCRIPT_TYPES_PROPERTY, Boolean.toString(!Config.get().isValidateDerivationPaths())); |
|
|
System.setProperty(Wallet.ALLOW_DERIVATIONS_MATCHING_OTHER_SCRIPT_TYPES_PROPERTY, Boolean.toString(!Config.get().isValidateDerivationPaths())); |
|
|
|
|
|
|
|
|
AppController appController = AppServices.newAppWindow(stage); |
|
|
AppController appController = AppServices.newAppWindow(stage); |
|
|