diff --git a/src/gtkUI/dialogs/configuration.py b/src/gtkUI/dialogs/configuration.py index b9781d23..583c12aa 100644 --- a/src/gtkUI/dialogs/configuration.py +++ b/src/gtkUI/dialogs/configuration.py @@ -54,18 +54,6 @@ class other_buffers(wx.Panel): def __init__(self, parent): super(other_buffers, self).__init__(parent) sizer = wx.BoxSizer(wx.VERTICAL) - self.followers = wx.CheckBox(self, -1, _(u"Show followers")) - sizer.Add(self.followers, 0, wx.ALL, 5) - self.friends = wx.CheckBox(self, -1, _(u"Show friends")) - sizer.Add(self.friends, 0, wx.ALL, 5) - self.favs = wx.CheckBox(self, -1, _(u"Show favourites")) - sizer.Add(self.favs, 0, wx.ALL, 5) - self.blocks = wx.CheckBox(self, -1, _(u"Show blocked users")) - sizer.Add(self.blocks, 0, wx.ALL, 5) - self.mutes = wx.CheckBox(self, -1, _(u"Show muted users")) - sizer.Add(self.mutes, 0, wx.ALL, 5) - self.events = wx.CheckBox(self, -1, _(u"Show events")) - sizer.Add(self.events, 0, wx.ALL, 5) self.SetSizer(sizer) class ignoredClients(wx.Panel): diff --git a/src/wxUI/dialogs/configuration.py b/src/wxUI/dialogs/configuration.py index d599685b..2893ade4 100644 --- a/src/wxUI/dialogs/configuration.py +++ b/src/wxUI/dialogs/configuration.py @@ -97,18 +97,7 @@ class other_buffers(wx.Panel): def __init__(self, parent): super(other_buffers, self).__init__(parent) sizer = wx.BoxSizer(wx.VERTICAL) - self.followers = wx.CheckBox(self, -1, _(u"Show followers")) - sizer.Add(self.followers, 0, wx.ALL, 5) - self.friends = wx.CheckBox(self, -1, _(u"Show friends")) - sizer.Add(self.friends, 0, wx.ALL, 5) - self.favs = wx.CheckBox(self, -1, _(u"Show favourites")) - sizer.Add(self.favs, 0, wx.ALL, 5) - self.blocks = wx.CheckBox(self, -1, _(u"Show blocked users")) - sizer.Add(self.blocks, 0, wx.ALL, 5) - self.mutes = wx.CheckBox(self, -1, _(u"Show muted users")) - sizer.Add(self.mutes, 0, wx.ALL, 5) - self.events = wx.CheckBox(self, -1, _(u"Show events")) - sizer.Add(self.events, 0, wx.ALL, 5) + #Todo: rewrite UI. self.SetSizer(sizer) class ignoredClients(wx.Panel):