Skip to content

Commit

Permalink
Removed open dialog on start
Browse files Browse the repository at this point in the history
  • Loading branch information
NickP0is0n committed Jul 17, 2021
1 parent 9af7cc9 commit f05e1ca
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,7 @@ class MainWindowView {
commentFieldValue = remember { mutableStateOf("Select an ID") }
)

val originalList = retrieveStringList()
stringList = remember { mutableStateListOf(*originalList.toTypedArray()) }
stringList = remember { mutableStateListOf(*listOf(LocalizedString("No file loaded", "", "")).toTypedArray()) }
StringList(stringList)
if (selectedID == -1) {
setTextFieldDefaultValues()
Expand Down

0 comments on commit f05e1ca

Please sign in to comment.