Skip to content

Commit

Permalink
AMOLED theme: Ensure we save the raw value and not the translation (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
g123k authored Aug 4, 2023
1 parent 13e6d54 commit 1c3921e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ class _ChooseAccentColor extends StatelessWidget {
),
labels: labels.values,
values: labels.keys,
currentValue: labels[colorProvider.currentColor],
currentValue: colorProvider.currentColor,
onChanged: (String? newValue) {
colorProvider.setColor(newValue!);
},
Expand Down

0 comments on commit 1c3921e

Please sign in to comment.