Disable "minimal" selection for remote reps pane (doesn't work)

This commit is contained in:
blitzman
2017-03-13 21:49:31 -04:00
parent 4ffec21cd3
commit d5f6f7b37c

View File

@@ -98,6 +98,8 @@ class PFStatViewPref(PreferenceView):
self.rbPrice.Bind(wx.EVT_RADIOBOX, self.OnPriceChange)
self.rbOutgoing = wx.RadioBox(panel, -1, "Remote Reps", wx.DefaultPosition, wx.DefaultSize, ['None', 'Minimal', 'Full'], 1, wx.RA_SPECIFY_COLS)
# Disable minimal as we don't have a view for this yet
self.rbOutgoing .EnableItem(1, False)
self.rbOutgoing.SetSelection(self.settings.get('outgoing'))
rbSizerRow3.Add(self.rbOutgoing, 1, wx.TOP | wx.RIGHT, 5)
self.rbOutgoing.Bind(wx.EVT_RADIOBOX, self.OnOutgoingChange)