File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
addon/globalPlugins/MathCAT Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ class GlobalPlugin(globalPluginHandler.GlobalPlugin):
2929 def __init__ (self , * args , ** kwargs ):
3030 super ().__init__ (* args , ** kwargs )
3131 # MathCAT.__init__(self)
32- self .add_MathCAT_menu ()
32+ self .addMathCATMenu ()
3333
34- def add_MathCAT_menu (self ):
34+ def addMathCATMenu (self ):
3535 if not globalVars .appArgs .secure :
3636 self .preferencesMenu = mainFrame .sysTrayIcon .preferencesMenu
3737 # Translators: this show up in the NVDA preferences dialog. It opens the MathCAT preferences dialog
3838 self .settings = self .preferencesMenu .Append (wx .ID_ANY , _ ("&MathCAT Settings..." ))
39- mainFrame .sysTrayIcon .Bind (wx .EVT_MENU , self .on_settings , self .settings )
39+ mainFrame .sysTrayIcon .Bind (wx .EVT_MENU , self .onSettings , self .settings )
4040
41- def on_settings (self , evt ):
41+ def onSettings (self , evt ):
4242 mainFrame .popupSettingsDialog (UserInterface )
4343
4444 def terminate (self ):
You can’t perform that action at this time.
0 commit comments