Skip to content

Commit

Permalink
minor hint tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
dylandhall committed Jun 26, 2024
1 parent 3aa5a03 commit 5f82c4d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion lib/game_state_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ class GameStateManager extends ChangeNotifier {
late final Player _player;
final ValueNotifier<ThemeMode> themeNotifier;
String lettersToAttempt = '';
int hintLevel = 0;

bool isSortAlphabetical = false;
void toggleSort() {
Expand Down
1 change: 1 addition & 0 deletions lib/main_game_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -656,6 +656,7 @@ class _MainGamePageState extends State<MainGamePage> with SingleTickerProviderSt
onPressed: () async {
setState(() {
_pageState = PageState.playing;
_hintLevelNotifier.value = 1;
});
await widget.gameStateManager.loadPracticeGame();
},
Expand Down

0 comments on commit 5f82c4d

Please sign in to comment.