Fixed saving 'settings.json' in application startup directory
This commit is contained in:
parent
7a327d5a8f
commit
3943c301e7
|
@ -28,7 +28,7 @@ class MainWindow : View(FX.messages["application.title"]) {
|
|||
|
||||
private val DecimalFormat = DecimalFormat( "#.00" )
|
||||
|
||||
private val AppSettingsFile = File("settings.json")
|
||||
private val AppSettingsFile = File(File("").absoluteFile, "settings.json")
|
||||
|
||||
private val logger = LoggerFactory.getLogger(MainWindow::class.java)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue