Skip to content

Commit

Permalink
speech dictionary entries dialog: address some issues noted in #357. …
Browse files Browse the repository at this point in the history
…specifically: Move the label for the entries list from beside it to above it, and make the first letter of the Edit button be uppercase to match the other buttons.
  • Loading branch information
michaelDCurran committed Jun 9, 2011
1 parent e3d4784 commit ff2c8d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/gui/settingsDialogs.py
Expand Up @@ -818,7 +818,7 @@ def __init__(self,parent,title,speechDict):

def makeSettings(self, settingsSizer):
dictListID=wx.NewId()
entriesSizer=wx.BoxSizer(wx.HORIZONTAL)
entriesSizer=wx.BoxSizer(wx.VERTICAL)
entriesLabel=wx.StaticText(self,-1,label=_("&Dictionary entries"))
entriesSizer.Add(entriesLabel)
self.dictList=wx.ListCtrl(self,dictListID,style=wx.LC_REPORT|wx.LC_SINGLE_SEL,size=(550,350))
Expand All @@ -838,7 +838,7 @@ def makeSettings(self, settingsSizer):
addButton=wx.Button(self,addButtonID,_("&Add"),wx.DefaultPosition)
entryButtonsSizer.Add(addButton)
editButtonID=wx.NewId()
editButton=wx.Button(self,editButtonID,_("&edit"),wx.DefaultPosition)
editButton=wx.Button(self,editButtonID,_("&Edit"),wx.DefaultPosition)
entryButtonsSizer.Add(editButton)
removeButtonID=wx.NewId()
removeButton=wx.Button(self,removeButtonID,_("&Remove"),wx.DefaultPosition)
Expand Down

0 comments on commit ff2c8d8

Please sign in to comment.