commit/placeMarkers: norrumar: Improved readability of saved strings combo box, based on Derek suggestion

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Tue, 09 Aug 2016 05:50:01 -0000

1 new commit in placeMarkers:

https://bitbucket.org/nvdaaddonteam/placemarkers/commits/6fce6bf44cc8/
Changeset:   6fce6bf44cc8
Branch:      master
User:        norrumar
Date:        2016-08-09 05:49:57+00:00
Summary:     Improved readability of saved strings combo box, based on Derek 
suggestion

Affected #:  1 file

diff --git a/addon/globalPlugins/placeMarkers.py 
b/addon/globalPlugins/placeMarkers.py
index 5f6140c..a253f25 100755
--- a/addon/globalPlugins/placeMarkers.py
+++ b/addon/globalPlugins/placeMarkers.py
@@ -610,7 +610,7 @@ class SpecificSearchDialog(SettingsDialog):
                textsListSizer.Add(textsListLabel)
                textsListID=wx.NewId()
                # Translators: A combo box to choose a saved text.
-               self.textsList=wx.Choice(self,textsListID, name=_("Saved texts 
to search:"), choices=[name for name in savedStrings])
+               self.textsList=wx.Choice(self,textsListID, name=_("Saved texts 
to search:"), choices=savedStrings)
                self.textsList.SetSelection(0)
                textsListSizer.Add(self.textsList)
                settingsSizer.Add(textsListSizer,border=10,flag=wx.BOTTOM)

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

--

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/placeMarkers: norrumar: Improved readability of saved strings combo box, based on Derek suggestion - commits-noreply