Add indicate_audio, indicate_geo and indicate_img settings.

This commit is contained in:
Bill Dengler
2017-01-11 15:18:11 +00:00
parent 6bb534d250
commit 5eff1b77fe
3 changed files with 15 additions and 0 deletions

View File

@@ -276,6 +276,12 @@ class sound(wx.Panel):
soundBox.Add(soundpack_label, 0, wx.ALL, 5)
soundBox.Add(self.soundpack, 0, wx.ALL, 5)
sizer.Add(soundBox, 0, wx.ALL, 5)
self.indicate_audio = wx.CheckBox(self, -1, _(u"Indicate audio tweets with sound"))
sizer.Add(self.indicate_audio, 0, wx.ALL, 5)
self.indicate_geo = wx.CheckBox(self, -1, _(u"Indicate geotweets with sound"))
sizer.Add(self.indicate_geo, 0, wx.ALL, 5)
self.indicate_img = wx.CheckBox(self, -1, _(u"Indicate tweets containing images with sound"))
sizer.Add(self.indicate_img, 0, wx.ALL, 5)
self.SetSizer(sizer)
def get(self, control):