Skip to content

Commit

Permalink
Bump version: 6.4
Browse files Browse the repository at this point in the history
* l10n updates.
* super(ActivateEmoticonsDialog, self).onOk(evt) now at the end for compatibility with next NVDA 2018.2.
  • Loading branch information
nvdaes committed May 13, 2018
1 parent 5586ab3 commit 0094e1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon/globalPlugins/emoticons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,10 +418,10 @@ def postInit(self):
self.activateList.SetFocus()

def onOk(self,evt):
super(ActivateEmoticonsDialog, self).onOk(evt)
config.conf["emoticons"]["announcement"] = self.activateList.GetSelection()
if config.conf["emoticons"]["announcement"]:
activateAnnouncement()
else:
deactivateAnnouncement()
config.conf["emoticons"]["cleanDicts"] = self.removeCheckBox.Value
super(ActivateEmoticonsDialog, self).onOk(evt)
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" : _("Enables the announcement of emoticon names instead of the character Representation."),
# version
"addon_version" : "6.3",
"addon_version" : "6.4",
# Author(s)
"addon_author" : u"Chris Leo <[email protected]>, Noelia Ruiz Martínez <[email protected]>, Mesar Hameed <[email protected]>, Francisco Javier Estrada Martínez <[email protected]>",
# URL for the add-on documentation support
Expand Down

0 comments on commit 0094e1c

Please sign in to comment.