0002309: Crash rerunning report after deleting used filter.

svn: r11021
This commit is contained in:
Brian Matherly 2008-09-05 03:43:06 +00:00
parent 9b63839a61
commit 5392e83761

View File

@ -355,6 +355,18 @@ class EnumeratedListOption(Option):
"""
self.__items = []
self.emit('options-changed')
def get_value(self):
"""
Get the value of this option.
@return: The option value.
"""
value = Option.get_value(self)
if value >= len(self.__items):
# Range check the value
value = 0
return value
#-------------------------------------------------------------------------
#