PrefUI // Padding adjustments in the PhraseEditorUI page.

This commit is contained in:
ShikiSuen 2022-12-08 17:41:55 +08:00
parent 7e73eab9f2
commit 573c93b59d
1 changed files with 4 additions and 4 deletions

View File

@ -37,11 +37,11 @@ struct VwrPrefPanePhrases: View {
var body: some View {
ScrollView {
SSPreferences.Container(contentWidth: contentWidth) {
SSPreferences.Section(title: "", bottomDivider: true) {
VwrPhraseEditorUI(delegate: LMMgr.shared).frame(height: 395)
}
VStack() {
VwrPhraseEditorUI(delegate: LMMgr.shared).frame(width: contentWidth + 28, height: 395)
Spacer()
}
.padding()
}
.frame(maxHeight: contentMaxHeight).fixedSize(horizontal: false, vertical: true)
}