diff --git a/assets/i18n/en.json b/assets/i18n/en.json index 2445fe60..a9fed214 100644 --- a/assets/i18n/en.json +++ b/assets/i18n/en.json @@ -101,7 +101,6 @@ "settingsView": { "widgetTitle": "Settings", "appearanceSectionTitle": "Appearance", - "patcherSectionTitle": "Patcher", "teamSectionTitle": "Team", "infoSectionTitle": "Info", "advancedSectionTitle": "Advanced", diff --git a/lib/ui/views/settings/settings_view.dart b/lib/ui/views/settings/settings_view.dart index e28bf551..abbe64f1 100644 --- a/lib/ui/views/settings/settings_view.dart +++ b/lib/ui/views/settings/settings_view.dart @@ -96,18 +96,6 @@ class SettingsView extends StatelessWidget { onTap: () => model.showLanguagesDialog(context), ), _settingsDivider, - SettingsSection( - title: 'settingsView.patcherSectionTitle', - children: [ - SettingsTileDialog( - padding: const EdgeInsets.symmetric(horizontal: 20.0), - title: 'settingsView.sourcesLabel', - subtitle: 'settingsView.sourcesLabelHint', - onTap: () => model.showSourcesDialog(context), - ), - ], - ), - _settingsDivider, SettingsSection( title: 'settingsView.teamSectionTitle', children: [ @@ -133,6 +121,24 @@ class SettingsView extends StatelessWidget { ], ), _settingsDivider, + SettingsSection( + title: 'settingsView.advancedSectionTitle', + children: [ + SettingsTileDialog( + padding: const EdgeInsets.symmetric(horizontal: 20.0), + title: 'settingsView.apiURLLabel', + subtitle: 'settingsView.apiURLHint', + onTap: () => model.showApiUrlDialog(context), + ), + SettingsTileDialog( + padding: const EdgeInsets.symmetric(horizontal: 20.0), + title: 'settingsView.sourcesLabel', + subtitle: 'settingsView.sourcesLabelHint', + onTap: () => model.showSourcesDialog(context), + ), + ], + ), + _settingsDivider, SettingsSection( title: 'settingsView.infoSectionTitle', children: [ @@ -157,18 +163,6 @@ class SettingsView extends StatelessWidget { ), ], ), - _settingsDivider, - SettingsSection( - title: 'settingsView.advancedSectionTitle', - children: [ - SettingsTileDialog( - padding: const EdgeInsets.symmetric(horizontal: 20.0), - title: 'settingsView.apiURLLabel', - subtitle: 'settingsView.apiURLHint', - onTap: () => model.showApiUrlDialog(context), - ), - ], - ), ], ), ),