Minor cleanup

This commit is contained in:
Jobobby04 2022-10-01 18:30:25 -04:00
parent dbeb6c721a
commit 5b31324b4b
2 changed files with 6 additions and 4 deletions

View File

@ -366,7 +366,7 @@ private fun ExtensionItemActions(
onClickItemAction: (Extension) -> Unit = {},
) {
val isIdle = installStep.isCompleted()
Row(modifier = modifier) {
Row(modifier = modifier, verticalAlignment = Alignment.CenterVertically) {
if (isIdle) {
// SY -->
if (

View File

@ -94,10 +94,12 @@ class MetadataViewController : FullComposeController<MetadataViewPresenter> {
.fillMaxWidth()
.clickableNoIndication(
onLongClick = {
context.copyToClipboard(title,
text)
context.copyToClipboard(
title,
text,
)
},
onClick = {}
onClick = {},
)
.padding(vertical = 8.dp),
) {