Chat info / Group info: use full spacing between two title-less cards

ChatInfoView (Contact prefs/Send receipts/Chat theme → Delete messages) and GroupChatInfoView (Member reports → Edit group profile) both used SectionDividerSpaced(maxBottomPadding = false) = 10dp between two cards that have neither header nor footer touching the gap, so the tight variant wasn't justified. Switch to the default 20dp.
This commit is contained in:
another-simple-pixel
2026-05-16 15:21:33 -07:00
parent 29be15404f
commit d9d95e018d
2 changed files with 2 additions and 2 deletions
@@ -610,7 +610,7 @@ fun ChatInfoLayout(
}
}
}
SectionDividerSpaced(maxBottomPadding = false)
SectionDividerSpaced()
SectionView {
ChatTTLOption(chatItemTTL, setChatItemTTL, deletingItems)
@@ -658,7 +658,7 @@ fun ModalData.GroupChatInfoLayout(
}
}
if (anyTopSectionRowShow) {
SectionDividerSpaced(maxBottomPadding = false)
SectionDividerSpaced()
}
SectionView {
if (groupInfo.isOwner && groupInfo.businessChat?.chatType == null) {