More generalization.

This commit is contained in:
Bill Dengler
2015-04-19 19:23:31 -04:00
parent 9820d369c3
commit 109635b8f4
5 changed files with 8 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ class sessionManagerWindow(wx.Dialog):
super(sessionManagerWindow, self).__init__(parent=None, title="Session manager", size=wx.DefaultSize)
panel = wx.Panel(self)
sizer = wx.BoxSizer(wx.VERTICAL)
label = wx.StaticText(panel, -1, u"Select a twitter account to start TW Blue", size=wx.DefaultSize)
label = wx.StaticText(panel, -1, u"Select a twitter account to start " + application.name, size=wx.DefaultSize)
listSizer = wx.BoxSizer(wx.HORIZONTAL)
self.list = widgets.list(panel, u"Account", style=wx.LC_SINGLE_SEL|wx.LC_REPORT)
listSizer.Add(label, 0, wx.ALL, 5)