Fix layout issue in the composer

This commit is contained in:
Thomas Ricouard 2024-01-05 19:25:27 +01:00
parent 0501ce9828
commit b3af5f1c45
2 changed files with 2 additions and 2 deletions

View file

@ -64,7 +64,7 @@ struct StatusEditorAccessoryView: View {
.padding(.leading, 16) .padding(.leading, 16)
} }
#else #else
ScrollView(.horizontal) { ScrollView(.horizontal, showsIndicators: false) {
HStack(alignment: .center, spacing: 16) { HStack(alignment: .center, spacing: 16) {
actionsView actionsView
} }

View file

@ -160,6 +160,6 @@ struct StatusEditorAutoCompleteView: View {
} }
.padding(.horizontal, .layoutPadding) .padding(.horizontal, .layoutPadding)
} }
.frame(height: 250) .frame(height: 200)
} }
} }