Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/src/main/java/com/bitchat/android/ui/ChatHeader.kt
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,8 @@ private fun MainHeader(
// Right section with location channels button and peer counter
Row(
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(5.dp)
horizontalArrangement = Arrangement.spacedBy(5.dp),
modifier = Modifier.offset(x = (-8).dp) // Shift left to fix alignment on some phones (e.g. Flip 7)
) {

// Unread private messages badge (click to open most recent DM)
Expand Down