Merge pull request #84 from Philipp91/windowtitle
Allow customizing the window title with an environment variable
This commit is contained in:
commit
668cfe7e70
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ class App {
|
|||
|
||||
if (isOpen) {
|
||||
Window(
|
||||
title = AppConstants.APP_NAME,
|
||||
title = System.getenv("title") ?: AppConstants.APP_NAME,
|
||||
onCloseRequest = {
|
||||
isOpen = false
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue