From 573c93b59d94318cd274ff780d3db2cde29fb58c Mon Sep 17 00:00:00 2001 From: ShikiSuen Date: Thu, 8 Dec 2022 17:41:55 +0800 Subject: [PATCH] PrefUI // Padding adjustments in the PhraseEditorUI page. --- Source/Modules/UIModules/PrefUI/VwrPrefPanePhrases.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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) }