From a410c2a2f65ebbbcdae693889e6a23b53284761f Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Thu, 27 Dec 2018 09:01:07 -0600 Subject: [PATCH] Removed weekly channel for now as there are no idea on how to track updates, yet --- src/wxUI/dialogs/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wxUI/dialogs/configuration.py b/src/wxUI/dialogs/configuration.py index 494a759..52844cf 100644 --- a/src/wxUI/dialogs/configuration.py +++ b/src/wxUI/dialogs/configuration.py @@ -23,7 +23,7 @@ class general(wx.Panel, widgetUtils.BaseDialog): self.load_images = wx.CheckBox(self, wx.NewId(), _(u"Load images in posts")) sizer.Add(self.load_images, 0, wx.ALL, 5) lbl4 = wx.StaticText(self, wx.NewId(), _(u"Update channel")) - self.update_channel = wx.ComboBox(self, wx.NewId(), choices=[_(u"Stable"), _(u"Weekly"), _(u"Alpha")], value=_(u"Native"), style=wx.CB_READONLY) + self.update_channel = wx.ComboBox(self, wx.NewId(), choices=[_(u"Stable"), _(u"Alpha")], value=_(u"Native"), style=wx.CB_READONLY) box4 = wx.BoxSizer(wx.HORIZONTAL) box4.Add(lbl4, 0, wx.ALL, 5) box4.Add(self.update_channel, 0, wx.ALL, 5)