Skip to content

Commit

Permalink
Fix reverb toggle.
Browse files Browse the repository at this point in the history
  • Loading branch information
masonasons committed Jun 29, 2022
1 parent e00be7d commit cfa500c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon/globalPlugins/Unspoken/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def make_sound_objects(self):
sound_object = sound.sound3d("3d",sound.context)
log.debug("Loading "+path, exc_info=True)
sound_object.load(path)
sound.context.config_route(sound_object.source, sound.reverb)
if config.conf["unspoken"]["Reverb"]==True: sound.context.config_route(sound_object.source, sound.reverb)
sounds[key] = sound_object

def shouldNukeRoleSpeech(self):
Expand Down
2 changes: 1 addition & 1 deletion buildVars.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Translators: Long description to be shown for this add-on on add-on information from add-ons manager
"addon_description" : _("""Adds 3D audio for controls and replaces control messages. This updated version uses Synthizer and is compatible with NVDA 2022.1."""),
# version
"addon_version" : "0.9.1",
"addon_version" : "0.9.2",
# Author(s)
"addon_author" : "Camlorn <[email protected]>, Bryan Smart< [email protected]>, Masonasons <[email protected]>",
# URL for the add-on documentation support
Expand Down

0 comments on commit cfa500c

Please sign in to comment.