File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
app/src/main/java/org/thoughtcrime/securesms/conversation/v2 Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ data class MessageDetailsState(
384
384
val proBadgeClickable : Boolean = false ,
385
385
) {
386
386
val fromTitle = GetString (R .string.from)
387
- val canReply: Boolean get() = ! readOnly && record?.isOpenGroupInvitation != true
387
+ val canReply: Boolean get() = ! readOnly && record?.isOpenGroupInvitation != true && error == null
388
388
val canDelete: Boolean get() = ! readOnly
389
389
}
390
390
Original file line number Diff line number Diff line change @@ -201,7 +201,6 @@ fun ConversationSettings(
201
201
Text (
202
202
modifier = Modifier
203
203
.qaTag(R .string.qa_conversation_settings_account_id)
204
- .safeContentWidth()
205
204
.pointerInput(Unit ) {
206
205
detectTapGestures(
207
206
onLongPress = { onLongPress() }
@@ -215,7 +214,7 @@ fun ConversationSettings(
215
214
},
216
215
text = data.displayAccountId,
217
216
textAlign = TextAlign .Center ,
218
- style = LocalType .current.base .monospace(),
217
+ style = LocalType .current.xl .monospace(),
219
218
color = LocalColors .current.text
220
219
)
221
220
}
You can’t perform that action at this time.
0 commit comments