From 25823b1f397f9269e64c8fd0f401fc42a834a30e Mon Sep 17 00:00:00 2001 From: VASH Date: Sat, 27 Jul 2024 13:05:20 +0200 Subject: [PATCH] Fix copying to clipboard edited notes --- .../vitorpamplona/amethyst/ui/note/elements/DropDownMenu.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/elements/DropDownMenu.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/elements/DropDownMenu.kt index ef758e62a..973406933 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/elements/DropDownMenu.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/note/elements/DropDownMenu.kt @@ -188,8 +188,9 @@ fun NoteDropDownMenu( DropdownMenuItem( text = { Text(stringRes(R.string.copy_text)) }, onClick = { + val lastNoteVersion = (editState?.value as? GenericLoadable.Loaded)?.loaded?.modificationToShow?.value ?: note scope.launch(Dispatchers.IO) { - accountViewModel.decrypt(note) { clipboardManager.setText(AnnotatedString(it)) } + accountViewModel.decrypt(lastNoteVersion) { clipboardManager.setText(AnnotatedString(it)) } onDismiss() } },