mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-23 00:40:59 +00:00
Align reblog / reply view in leading mode Fix #1186
This commit is contained in:
parent
62fd7bae12
commit
58957c779a
1 changed files with 5 additions and 2 deletions
|
@ -35,8 +35,11 @@ public struct StatusRowView: View {
|
|||
}
|
||||
} else {
|
||||
if !isCompact, theme.avatarPosition == .leading {
|
||||
StatusRowReblogView(viewModel: viewModel)
|
||||
StatusRowReplyView(viewModel: viewModel)
|
||||
Group {
|
||||
StatusRowReblogView(viewModel: viewModel)
|
||||
StatusRowReplyView(viewModel: viewModel)
|
||||
}
|
||||
.padding(.leading, AvatarView.Size.status.size.width + .statusColumnsSpacing)
|
||||
}
|
||||
HStack(alignment: .top, spacing: .statusColumnsSpacing) {
|
||||
if !isCompact,
|
||||
|
|
Loading…
Reference in a new issue