Skip to content

Commit

Permalink
Fix status colors
Browse files Browse the repository at this point in the history
  • Loading branch information
Carapacik committed Dec 1, 2023
1 parent 1c4663f commit 3caafe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/feature/game/model/letter_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ enum LetterStatus {
notInWord,
unknown;

bool operator <(LetterStatus other) => index < other.index;
bool operator <(LetterStatus other) => other.index < index;

Color cellColor(BuildContext context, {bool listen = true}) {
final theme = SettingsScope.of(context, listen: listen).theme;
Expand Down

0 comments on commit 3caafe4

Please sign in to comment.