Skip to content

Commit 3cb4ec5

Browse files
authored
Merge pull request #39 from NSoiffer/PauseFactor
Increase maximum PauseFactor to 1000
2 parents 283b327 + a005c8b commit 3cb4ec5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

NVDA-addon/addon/globalPlugins/MathCAT/MathCATPreferences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ def validate_user_preferences():
204204
# MathRate: 100 # Change from text speech rate (%)
205205
UserInterface.validate("Speech", "MathRate", [0,200], 100)
206206
# PauseFactor: 100 # TBC
207-
UserInterface.validate("Speech", "PauseFactor", [0,400], 100)
207+
UserInterface.validate("Speech", "PauseFactor", [0,1000], 100)
208208
# SpeechSound: None # make a sound when starting/ending math speech -- None, Beep
209209
UserInterface.validate("Speech", "SpeechSound", ["None", "Beep"], "None")
210210
# SpeechStyle: ClearSpeak # Any known speech style (falls back to ClearSpeak)

NVDA-addon/addon/globalPlugins/MathCAT/MathCATgui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def __init__( self, parent ):
136136

137137
bSizerPauseFactor.Add( self.m_staticPauseFactor, 0, wx.ALL, 5 )
138138

139-
self.m_sliderPauseFactor = wx.Slider( self.m_panelSpeech, wx.ID_ANY, 100, 0, 400, wx.DefaultPosition, wx.DefaultSize, wx.SL_HORIZONTAL )
139+
self.m_sliderPauseFactor = wx.Slider( self.m_panelSpeech, wx.ID_ANY, 100, 0, 1000, wx.DefaultPosition, wx.DefaultSize, wx.SL_HORIZONTAL )
140140
bSizerPauseFactor.Add( self.m_sliderPauseFactor, 0, wx.ALL, 5 )
141141

142142

0 commit comments

Comments
 (0)