Added empty panels for organisation in posts and music buffers

This commit is contained in:
2016-03-23 08:57:16 -06:00
parent 4eebec68ab
commit 33b779887e
3 changed files with 30 additions and 6 deletions

View File

@@ -108,3 +108,9 @@ class friendsTab(homeTab):
self.list.set_windows_size(0, 400)
self.list.list.Bind(wx.EVT_LIST_ITEM_ACTIVATED, self.OnKeyDown)
class empty(wx.Panel):
def __init__(self, parent, name):
super(empty, self).__init__(parent=parent, name=name)
self.name = name
sizer = wx.BoxSizer(wx.VERTICAL)
self.SetSizer(sizer)