Changes for Snapshot 5 release

This commit is contained in:
2014-12-07 09:31:39 -06:00
parent 0492e65aa0
commit 104bc4ec8c
23 changed files with 510 additions and 587 deletions

View File

@@ -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"Men&tion all"), size=wx.DefaultSize)
self.mentionAll.Disable()
self.mentionAll.Bind(wx.EVT_BUTTON, self.mentionAllUsers)
self.buttonsBox1.Add(self.mentionAll, 0, wx.ALL, 5)

View File

@@ -58,6 +58,8 @@ class trendingTopicsDialog(wx.Dialog):
self.SetClientSize(sizer.CalcMin())
def split_information(self):
# self.countries["World wide"] = 1
# self.cities["World wide"] = 1
for i in self.information:
if i["placeType"]["name"] == "Country":
self.countries[i["name"]] = i["woeid"]