Sorta works. Not yet useful, though.
(self)
| 2158 | |
| 2159 | class OptionsScreen(Menu): |
| 2160 | def __init__(self): |
| 2161 | """ |
| 2162 | Sorta works. Not yet useful, though. |
| 2163 | """ |
| 2164 | options = list(cfg) |
| 2165 | options.sort() |
| 2166 | Menu.__init__(self, options=options, values=cfg, title=_('Configuration')) |
| 2167 | |
| 2168 | |
| 2169 | class GameSelect(Menu): |