mirror of https://gitlab.com/pamhyr/pamhyr2
Hydraulic structure: fix crashing bug happening when we select the section combobox without selecting a reach in the first combobox
parent
32db5795da
commit
d6aeb5df21
|
|
@ -96,6 +96,9 @@ class ComboBoxDelegate(QItemDelegate):
|
|||
reach = self._data.hydraulic_structures\
|
||||
.get_for_enabled_reaches(index.row())\
|
||||
.input_reach
|
||||
if reach is None:
|
||||
value = None
|
||||
else:
|
||||
profiles = list(
|
||||
filter(
|
||||
lambda p: p.display_name() == text,
|
||||
|
|
|
|||
Loading…
Reference in New Issue