Codebase list lightdm-gtk-greeter-settings / 4393406
Infinite loop in IndicatorsEntry (LP: #1435635) Andrew P. 9 years ago
1 changed file(s) with 0 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
344344 self._on_model_changed()
345345
346346 def _read_options_string(self, s):
347
348347 while s:
349348 name, s = self._next_string_token(s, ':;')
350 if not name:
351 continue
352349 options = {Option.Name: name}
353350
354351 if s.startswith(':'):