We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f8e85a commit d854e6aCopy full SHA for d854e6a
lib/pages/settings/super_resolution_settings.dart
@@ -95,7 +95,7 @@ class _SuperResolutionSettingsState extends State<SuperResolutionSettings> {
95
description: const Text('关闭每次启用超分辨率时的提示'),
96
initialValue: promptOnEnable,
97
onToggle: (value) async {
98
- promptOnEnable = value ?? false;
+ promptOnEnable = value ?? !promptOnEnable;
99
await setting.put(
100
SettingBoxKey.superResolutionWarn, promptOnEnable);
101
if (mounted) setState(() {});
0 commit comments