Adds some margin for reply quotes

This commit is contained in:
Vitor Pamplona
2023-04-22 15:14:00 -04:00
parent 9c715dd381
commit c1d05f8b2f
2 changed files with 9 additions and 9 deletions

View File

@@ -148,14 +148,6 @@ fun ZoomableContentView(content: ZoomableContent, images: List<ZoomableContent>
) )
if (content is ZoomableImage) { if (content is ZoomableImage) {
if (imageState !is AsyncImagePainter.State.Success) {
if (content.bluehash != null) {
DisplayBlueHash(content, mainImageModifier)
} else {
DisplayUrlWithLoadingSymbol(content)
}
}
Box() { Box() {
AsyncImage( AsyncImage(
model = content.url, model = content.url,
@@ -174,6 +166,14 @@ fun ZoomableContentView(content: ZoomableContent, images: List<ZoomableContent>
HashVerificationSymbol(verifiedHash, Modifier.align(Alignment.TopEnd)) HashVerificationSymbol(verifiedHash, Modifier.align(Alignment.TopEnd))
} }
} }
if (imageState !is AsyncImagePainter.State.Success) {
if (content.bluehash != null) {
DisplayBlueHash(content, mainImageModifier)
} else {
DisplayUrlWithLoadingSymbol(content)
}
}
} else { } else {
VideoView(content.url) { dialogOpen = true } VideoView(content.url) { dialogOpen = true }
} }

View File

@@ -375,7 +375,7 @@ fun NoteComposeInner(
baseNote = replyingDirectlyTo, baseNote = replyingDirectlyTo,
isQuotedNote = true, isQuotedNote = true,
modifier = Modifier modifier = Modifier
.padding(0.dp) .padding(top = 5.dp)
.fillMaxWidth() .fillMaxWidth()
.clip(shape = RoundedCornerShape(15.dp)) .clip(shape = RoundedCornerShape(15.dp))
.border( .border(