Skip to content

Commit 02a7e03

Browse files
committed
Changed MathRate to have limits 20 - 200. The previous values produced ridiculous results. Even 200 is likely too much.
Note: I manually edited the files. Hopefully nothing is messed up.
1 parent 1e8441b commit 02a7e03

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

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

124124
bSizer7131.Add( self.m_staticText21111, 0, wx.ALL, 5 )
125125

126-
self.m_sliderRelativeSpeed = wx.Slider( self.m_panelSpeech, wx.ID_ANY, 100, 10, 1000, wx.DefaultPosition, wx.DefaultSize, wx.SL_HORIZONTAL )
126+
self.m_sliderRelativeSpeed = wx.Slider( self.m_panelSpeech, wx.ID_ANY, 100, 20, 200, wx.DefaultPosition, wx.DefaultSize, wx.SL_HORIZONTAL )
127127
bSizer7131.Add( self.m_sliderRelativeSpeed, 0, wx.ALL, 5 )
128128

129129

wxFormBuilder/MathCATgui.fbp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,11 +1092,11 @@
10921092
<property name="gripper">0</property>
10931093
<property name="hidden">0</property>
10941094
<property name="id">wxID_ANY</property>
1095-
<property name="maxValue">1000</property>
1095+
<property name="maxValue">200</property>
10961096
<property name="max_size"></property>
10971097
<property name="maximize_button">0</property>
10981098
<property name="maximum_size"></property>
1099-
<property name="minValue">10</property>
1099+
<property name="minValue">20</property>
11001100
<property name="min_size"></property>
11011101
<property name="minimize_button">0</property>
11021102
<property name="minimum_size"></property>

0 commit comments

Comments
 (0)