Fix rate and pitch for system tts Closes #2545
| @@ -51,6 +51,8 @@ var speechUtteranceChunker = function (utt, settings, callback) { | ||
| 51 | 51 | } |
| 52 | 52 | newUtt.lang = utt.lang; |
| 53 | 53 | newUtt.voice = utt.voice; |
| 54 | + newUtt.rate = utt.rate; | |
| 55 | + newUtt.pitch = utt.pitch; | |
| 54 | 56 | newUtt.addEventListener('end', function () { |
| 55 | 57 | if (speechUtteranceChunker.cancel) { |
| 56 | 58 | speechUtteranceChunker.cancel = false; |