Skip to content

Commit f019aab

Browse files
committed
fix exception when listing synthesizers, now NVDA doesn't try to recognize settingsDB as a synth driver.
1 parent 4703459 commit f019aab

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

addon/globalPlugins/ibmtts.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from os import path
88
from ctypes import windll
99
import config, gui, globalPluginHandler, addonHandler
10-
from synthDrivers import settingsDB
10+
from synthDrivers import _settingsDB
1111
from logHandler import log
1212
from gui import SettingsPanel
1313
addonHandler.initTranslation()
@@ -126,3 +126,4 @@ class GlobalPlugin(globalPluginHandler.GlobalPlugin):
126126
def __init__(self):
127127
super(GlobalPlugin, self).__init__()
128128
gui.settingsDialogs.NVDASettingsDialog.categoryClasses.append(IBMTTSSettingsPanel)
129+

addon/synthDrivers/_ibmeci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import time, threading
1818
import nvwave, config, languageHandler, addonHandler
1919
from logHandler import log
20-
import settingsDB
20+
import _settingsDB
2121

2222
addonHandler.initTranslation()
2323

File renamed without changes.

0 commit comments

Comments
 (0)