add signer support whem replying

This commit is contained in:
greenart7c3
2023-08-16 14:34:11 -03:00
parent 66b1e4b15d
commit b8e97525eb
@@ -579,6 +579,9 @@ fun ReplyReaction(
onClick = { onClick = {
if (accountViewModel.isWriteable()) { if (accountViewModel.isWriteable()) {
onPress() onPress()
} else {
if (PackageUtils.isAmberInstalled(context)) {
onPress()
} else { } else {
scope.launch { scope.launch {
Toast.makeText( Toast.makeText(
@@ -589,6 +592,7 @@ fun ReplyReaction(
} }
} }
} }
}
) { ) {
CommentIcon(iconSize, grayTint) CommentIcon(iconSize, grayTint)
} }