Changes on snapshot 4; audio uploader fixes

This commit is contained in:
2014-11-29 11:07:06 -06:00
parent acb8c5acd3
commit acb3cce1d6
7 changed files with 11 additions and 10 deletions

View File

@@ -68,8 +68,8 @@ class audioDialog(wx.Dialog):
services = []
if config.main["services"]["dropbox_token"] != "":
services.append("Dropbox")
service.append("TwUp")
services.append("SNDUp")
services.append("TwUp")
services.append("SNDUp")
return services
def onPause(self, ev):

View File

@@ -3,7 +3,7 @@ import wx
class autocompletionSettingsDialog(wx.Dialog):
def __init__(self):
super(autocompletionSettingsDialog, self).__init__(parent=None, id=-1, title=_(u"Autocompletion settings"))
super(autocompletionSettingsDialog, self).__init__(parent=None, id=-1, title=_(u"Autocomplete users settings"))
panel = wx.Panel(self)
sizer = wx.BoxSizer(wx.VERTICAL)
self.followers_buffer = wx.CheckBox(panel, -1, _(u"Add users from followers buffer"))