From 1488704cc85b5fef86398d8832db8288ff79c17e Mon Sep 17 00:00:00 2001 From: another-simple-pixel Date: Mon, 18 May 2026 12:50:13 -0700 Subject: [PATCH] UserProfilesView: use Divider() between rows (SectionDivider no-op outside SectionView) --- .../chat/simplex/common/views/usersettings/UserProfilesView.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/usersettings/UserProfilesView.kt b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/usersettings/UserProfilesView.kt index 9ce5a8242f..7ac83af68a 100644 --- a/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/usersettings/UserProfilesView.kt +++ b/apps/multiplatform/common/src/commonMain/kotlin/chat/simplex/common/views/usersettings/UserProfilesView.kt @@ -176,7 +176,7 @@ private fun UserProfilesLayout( for (user in filteredUsers) { UserView(user, visibleUsersCount, activateUser, removeUser, unhideUser, muteUser, unmuteUser, showHiddenProfile) - SectionDivider() + Divider(Modifier.padding(horizontal = 8.dp)) } if (searchTextOrPassword.value.trim().isEmpty()) { SectionItemView(addUser, minHeight = 68.dp) {