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(