From 6bcfef0caabe62716aec5310f1d269b3137d3e67 Mon Sep 17 00:00:00 2001 From: stopflock Date: Fri, 29 Aug 2025 13:53:41 -0500 Subject: [PATCH] submittable is now an option on editable profiles --- lib/screens/profile_editor.dart | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/lib/screens/profile_editor.dart b/lib/screens/profile_editor.dart index 200ec4f..3755ea8 100644 --- a/lib/screens/profile_editor.dart +++ b/lib/screens/profile_editor.dart @@ -82,14 +82,14 @@ class _ProfileEditorState extends State { onChanged: (value) => setState(() => _requiresDirection = value ?? true), controlAffinity: ListTileControlAffinity.leading, ), - if (!widget.profile.builtin) ...[ - CheckboxListTile( - title: const Text('Submittable'), - subtitle: const Text('Whether this profile can be used for submissions'), - value: _submittable, - onChanged: (value) => setState(() => _submittable = value ?? true), - controlAffinity: ListTileControlAffinity.leading, - ), + CheckboxListTile( + title: const Text('Submittable'), + subtitle: const Text('Whether this profile can be used for camera submissions'), + value: _submittable, + onChanged: (value) => setState(() => _submittable = value ?? true), + controlAffinity: ListTileControlAffinity.leading, + ), + if (!widget.profile.builtin) CheckboxListTile( title: const Text('Editable'), subtitle: const Text('Whether this profile can be modified after creation'), @@ -97,7 +97,6 @@ class _ProfileEditorState extends State { onChanged: (value) => setState(() => _editable = value ?? true), controlAffinity: ListTileControlAffinity.leading, ), - ], ], const SizedBox(height: 8), Row(