commit/StationPlaylist: josephsl: Gain Focus: oops, put a space between the colon and the actual label for braille output

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Thu, 20 Nov 2014 07:32:21 -0000

1 new commit in StationPlaylist:

https://bitbucket.org/nvdaaddonteam/stationplaylist/commits/bc174de9a5b2/
Changeset:   bc174de9a5b2
Branch:      splengine
User:        josephsl
Date:        2014-11-20 07:31:53+00:00
Summary:     Gain Focus: oops, put a space between the colon and the actual 
label for braille output

Affected #:  1 file

diff --git a/addon/appModules/splengine.py b/addon/appModules/splengine.py
index afced7e..01bbba4 100755
--- a/addon/appModules/splengine.py
+++ b/addon/appModules/splengine.py
@@ -82,7 +82,7 @@ class AppModule(appModuleHandler.AppModule):
                streamLabel = self._get_streamLabel(obj)
                if streamLabel is not None:
                        speech.speakMessage(streamLabel)
-                       brailleStreamLabel = str(obj.IAccessibleChildID) + ":" 
+ streamLabel
+                       brailleStreamLabel = ": 
".join([str(obj.IAccessibleChildID), streamLabel])
                        braille.handler.message(brailleStreamLabel)
                nextHandler()

Repository URL: https://bitbucket.org/nvdaaddonteam/stationplaylist/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts:

  • » commit/StationPlaylist: josephsl: Gain Focus: oops, put a space between the colon and the actual label for braille output - commits-noreply