From cbae44830976e97d3f7e1c07bad26a60af25d8ce Mon Sep 17 00:00:00 2001 From: another-simple-pixel Date: Sun, 17 May 2026 08:58:48 -0700 Subject: [PATCH] ServersSummaryView: bump Message reception custom header to 14sp to match other card titles --- .../chat/simplex/common/views/chatlist/ServersSummaryView.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chatlist/ServersSummaryView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chatlist/ServersSummaryView.kt index 2e54a034ba..479e17c987 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chatlist/ServersSummaryView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/chatlist/ServersSummaryView.kt @@ -333,7 +333,7 @@ private fun SMPSubscriptionsSection(totals: SMPTotals) { generalGetString(MR.strings.servers_info_subscriptions_section_header), color = MaterialTheme.colors.secondary, style = MaterialTheme.typography.body2, - fontSize = 12.sp + fontSize = 14.sp ) SubscriptionStatusIndicatorView(totals.subs, totals.sessions.hasSess) } @@ -363,7 +363,7 @@ private fun SMPSubscriptionsSection(subs: SMPServerSubs, summary: SMPServerSumma generalGetString(MR.strings.servers_info_subscriptions_section_header), color = MaterialTheme.colors.secondary, style = MaterialTheme.typography.body2, - fontSize = 12.sp + fontSize = 14.sp ) SubscriptionStatusIndicatorView(subs, summary.sessionsOrNew.hasSess) }