8 Jan
2014
8 Jan
'14
4:45 p.m.
- def get_settings(self):
_settings = self._memobj.settings
basic = RadioSettingGroup("basic", "Basic")
sound = RadioSettingGroup("sound", "Sound")
dtmf = RadioSettingGroup("dtmf", "DTMF")
arts = RadioSettingGroup("arts", "ARTS")
eai = RadioSettingGroup("eai", "Emergency")
msg = RadioSettingGroup("msg", "Messages")
top = RadioSettingGroup("top", "All Settings",
basic, sound, arts, dtmf, eai, msg)
This is a lot of work, nice job. I'd like to start splitting up these settings methods somehow so that they're not so long. Not sure what the best way to do that is, but I think we've got to figure out something.
--Dan