mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2025-07-18 06:06:06 -04:00
Added buttons for toggling favorites and bookmarks in base buffer's GUI
This commit is contained in:
@@ -24,11 +24,15 @@ class basePanel(wx.Panel):
|
||||
self.post = wx.Button(self, -1, _("Post"))
|
||||
self.boost = wx.Button(self, -1, _("Boost"))
|
||||
self.reply = wx.Button(self, -1, _(u"Reply"))
|
||||
self.fav = wx.Button(self, wx.ID_ANY, _("Favorite"))
|
||||
self.bookmark = wx.Button(self, wx.ID_ANY, _("Bookmark"))
|
||||
self.dm = wx.Button(self, -1, _(u"Direct message"))
|
||||
btnSizer = wx.BoxSizer(wx.HORIZONTAL)
|
||||
btnSizer.Add(self.post, 0, wx.ALL, 5)
|
||||
btnSizer.Add(self.boost, 0, wx.ALL, 5)
|
||||
btnSizer.Add(self.reply, 0, wx.ALL, 5)
|
||||
btnSizer.Add(self.fav, 0, wx.ALL, 5)
|
||||
btnSizer.Add(self.bookmark, 0, wx.ALL, 5)
|
||||
btnSizer.Add(self.dm, 0, wx.ALL, 5)
|
||||
self.sizer.Add(btnSizer, 0, wx.ALL, 5)
|
||||
self.sizer.Add(self.list.list, 0, wx.ALL|wx.EXPAND, 5)
|
||||
|
Reference in New Issue
Block a user