mirror of https://gitlab.com/pamhyr/pamhyr2
HS: Fix checkbox state at undo add command.
parent
6951b82339
commit
ac2a2002b7
|
|
@ -165,13 +165,9 @@ class HydraulicStructuresWindow(PamhyrWindow):
|
|||
|
||||
table = self.find(QTableView, "tableView")
|
||||
table.selectionModel()\
|
||||
.selectionChanged\
|
||||
.connect(self._set_checkbox_state)
|
||||
table.selectionModel()\
|
||||
.selectionChanged\
|
||||
.connect(self.update)
|
||||
#self._delegate_kp.currentItemChanged.connect(lambda:x, print("toto"))
|
||||
#self._delegate_reach.currentItemChanged.connect(lambda:x, print("titi"))
|
||||
.selectionChanged\
|
||||
.connect(self.update)
|
||||
|
||||
self._table.dataChanged.connect(self.update)
|
||||
self._table.layoutChanged.connect(self.update)
|
||||
|
||||
|
|
@ -266,6 +262,8 @@ class HydraulicStructuresWindow(PamhyrWindow):
|
|||
self._hs_lst.get(row).enabled = self._checkbox.isChecked()
|
||||
|
||||
def update(self):
|
||||
self._set_checkbox_state()
|
||||
|
||||
rows = self.index_selected_rows()
|
||||
|
||||
if len(rows) > 0 and len(self._hs_lst) > 0:
|
||||
|
|
|
|||
Loading…
Reference in New Issue