Files
DrunkSoulsStatTool/dsst/dsst_gtk3/util.py
2018-02-22 21:27:07 +01:00

10 lines
337 B
Python

class Util:
@staticmethod
def get_combo_value(combo, index: int):
""" Retrieve the selected value of a combo box at the selected index in the model """
tree_iter = combo.get_active_iter()
if tree_iter:
return combo.get_model().get_value(tree_iter, index)
else:
return None