Skip to content

Commit 00277b7

Browse files
committed
fix: disable alerts tts
1 parent 85749dd commit 00277b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/models/tts.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class TtsModel extends ChangeNotifier {
182182
void toggleMode(AppLocalizations localizations) {
183183
switch (_mode) {
184184
case TtsMode.disabled:
185-
setMode(localizations, TtsMode.alertsOnly);
185+
setMode(localizations, TtsMode.enabled); // TODO: enable alerts tts
186186
break;
187187
case TtsMode.alertsOnly:
188188
setMode(localizations, TtsMode.enabled);

0 commit comments

Comments
 (0)