mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-08-27 18:29:23 +00:00
Changes on snapshot 4; audio uploader fixes
This commit is contained in:
@@ -51,7 +51,7 @@ class general(wx.Panel):
|
||||
langBox.Add(language, 0, wx.ALL, 5)
|
||||
langBox.Add(self.language, 0, wx.ALL, 5)
|
||||
sizer.Add(langBox, 0, wx.ALL, 5)
|
||||
self.au = wx.Button(self, -1, u"Configure autocompltion")
|
||||
self.au = wx.Button(self, -1, _(u"Set the autocomplete function"))
|
||||
# self.Bind(wx.EVT_BUTTON, self.autocompletion, au)
|
||||
self.ask_at_exit = wx.CheckBox(self, -1, _(U"ask before exiting TwBlue?"))
|
||||
self.ask_at_exit.SetValue(config.main["general"]["ask_at_exit"])
|
||||
|
@@ -315,7 +315,7 @@ class reply(tweet):
|
||||
super(reply, self).__init__(message, title, text, parent)
|
||||
self.in_reply_to = parent.db.settings[parent.name_buffer][parent.list.get_selected()]["id"]
|
||||
self.text.SetInsertionPoint(len(self.text.GetValue()))
|
||||
self.mentionAll = wx.Button(self, -1, _(u"Mention to all"), size=wx.DefaultSize)
|
||||
self.mentionAll = wx.Button(self, -1, _(u"Mention &to all"), size=wx.DefaultSize)
|
||||
self.mentionAll.Disable()
|
||||
self.mentionAll.Bind(wx.EVT_BUTTON, self.mentionAllUsers)
|
||||
self.buttonsBox1.Add(self.mentionAll, 0, wx.ALL, 5)
|
||||
|
Reference in New Issue
Block a user