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)
}
#else
ScrollView(.horizontal) {
ScrollView(.horizontal, showsIndicators: false) {
HStack(alignment: .center, spacing: 16) {
actionsView
}

View File

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