Minor changes before the next release

This commit is contained in:
2016-03-24 22:18:51 -06:00
parent cbc301141e
commit 72ba5a74f5
2 changed files with 10 additions and 10 deletions

View File

@@ -16,7 +16,7 @@ class UserActionsDialog(wx.Dialog):
userSizer.Add(self.autocompletion, 0, wx.ALL, 5)
actionSizer = wx.BoxSizer(wx.VERTICAL)
label2 = wx.StaticText(panel, -1, _(u"Action"))
self.follow = wx.RadioButton(panel, -1, _(u"&Follow"), style=wx.RB_GROUP)
self.follow = wx.RadioButton(panel, -1, _(u"&Follow"), name=_(u"Action"), style=wx.RB_GROUP)
self.unfollow = wx.RadioButton(panel, -1, _(u"U&nfollow"))
self.mute = wx.RadioButton(panel, -1, _(u"&Mute"))
self.unmute = wx.RadioButton(panel, -1, _(u"Unmu&te"))