Sebastian Kürten
04/16/2023, 8:51 AMSebastian Kürten
04/16/2023, 8:53 AMeskatos
04/16/2023, 9:07 AMSebastian Kürten
04/16/2023, 9:27 AMSebastian Kürten
04/16/2023, 9:31 AMLocalClipboardManager provides object : ClipboardManager {
override fun getText() = clipboardManager.getText() // allow pasting text from clipboard
override fun setText(annotatedString: AnnotatedString) = Unit // don't allow copying text into clipboard
}
it does more or less what we like to do, i.e. copying from the textfield is effectively impossible, however the UI still shows the Cut/Copy buttons when text is selected and right-clicked.orangy
Sebastian Kürten
04/16/2023, 10:54 AM