CheckmarkDialog: Replace setText by append

Replace `etNotes.setText` by `etNotes.append` so that the cursor moves
to the end of the line.
This commit is contained in:
2021-11-11 05:54:45 -06:00
parent 990c85aedd
commit 43489aeb4c

View File

@@ -45,7 +45,7 @@ class CheckmarkDialog
): AlertDialog {
binding = CheckmarkDialogBinding.inflate(LayoutInflater.from(context))
fontAwesome = InterfaceUtils.getFontAwesome(context)!!
binding.etNotes.setText(notes)
binding.etNotes.append(notes)
setUpButtons(value, theme.color(paletteColor).toInt())
val dialog = AlertDialog.Builder(context)