Skip to content

Commit

Permalink
Changed MathRate to have limits 20 - 200. The previous values produce…
Browse files Browse the repository at this point in the history
…d ridiculous results. Even 200 is likely too much.

Note: I manually edited the files. Hopefully nothing is messed up.
  • Loading branch information
NSoiffer committed Mar 21, 2022
1 parent 1e8441b commit 02a7e03
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NVDA-addon/addon/globalPlugins/MathCAT/MathCATgui.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def __init__( self, parent ):

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

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


Expand Down
4 changes: 2 additions & 2 deletions wxFormBuilder/MathCATgui.fbp
Original file line number Diff line number Diff line change
Expand Up @@ -1092,11 +1092,11 @@
<property name="gripper">0</property>
<property name="hidden">0</property>
<property name="id">wxID_ANY</property>
<property name="maxValue">1000</property>
<property name="maxValue">200</property>
<property name="max_size"></property>
<property name="maximize_button">0</property>
<property name="maximum_size"></property>
<property name="minValue">10</property>
<property name="minValue">20</property>
<property name="min_size"></property>
<property name="minimize_button">0</property>
<property name="minimum_size"></property>
Expand Down

0 comments on commit 02a7e03

Please sign in to comment.