diff --git a/Source/Modules/UIModules/PrefUI/VwrPrefPanePhrases.swift b/Source/Modules/UIModules/PrefUI/VwrPrefPanePhrases.swift index 1e4d2d97..11fbf192 100644 --- a/Source/Modules/UIModules/PrefUI/VwrPrefPanePhrases.swift +++ b/Source/Modules/UIModules/PrefUI/VwrPrefPanePhrases.swift @@ -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) }