Index: chrome/browser/resources/chromeos/chromevox/chromevox/background/braille_captions_background.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/background/braille_captions_background.js b/chrome/browser/resources/chromeos/chromevox/chromevox/background/braille_captions_background.js |
index 3e4d386e2c465f402ec676a4498ae219eaa2fad0..0d2183c970466678700f506f1af19fb32f677b3a 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/background/braille_captions_background.js |
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/background/braille_captions_background.js |
@@ -88,7 +88,7 @@ cvox.BrailleCaptionsBackground.setActive = function(newValue) { |
var msg = newValue ? |
cvox.ChromeVox.msgs.getMsg('braille_captions_enabled') : |
cvox.ChromeVox.msgs.getMsg('braille_captions_disabled'); |
- cvox.ChromeVox.tts.speak(msg); |
+ cvox.ChromeVox.tts.speak(msg, cvox.QueueMode.QUEUE); |
cvox.ChromeVox.braille.write(cvox.NavBraille.fromText(msg)); |
} |
}; |