pixed bug regarding the maths of choosing one index

This commit is contained in:
Hellow2 2023-03-30 10:34:17 +02:00
parent 214b04d7cc
commit d158736c45

View File

@ -68,16 +68,16 @@ class MultiPageOptions:
for key in self._current_option_dict: for key in self._current_option_dict:
return self.choose_from_single_page(key, index), key return self.choose_from_single_page(key, index), key
j = 0 sum_of_length = 0
for page, options in self._current_option_dict.items(): for page, options in self._current_option_dict.items():
option_len = len(options) option_len = min((len(options), self.max_displayed_options))
if option_len > self.max_displayed_options:
option_len = self.max_displayed_options
if j <= index < j + option_len: index_of_list = index - sum_of_length
return options[j + option_len - 1], page
j += option_len if index_of_list < option_len:
return options[index_of_list], page
sum_of_length += option_len
raise IndexError("index is out of range") raise IndexError("index is out of range")