Skip to content

Commit 727c54e

Browse files
committed
fix: send text to clipboard before displaying tooltip
1 parent dac2d6c commit 727c54e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/to/bitkit/ui/components/QrCodeImage.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ fun QrCodeImage(
8787
modifier = if (tipMessage.isNotBlank()) {
8888
Modifier.clickableAlpha {
8989
coroutineScope.launch {
90-
tooltipState.show()
9190
clipboard.setText(AnnotatedString(content))
91+
tooltipState.show()
9292
}
9393
}
9494
} else Modifier

0 commit comments

Comments
 (0)