Skip to content
Snippets Groups Projects
Commit 7b33e2bc authored by Arnaud MORVAN's avatar Arnaud MORVAN
Browse files

Fix super().data(index, role) crash QGIS on Windows

parent 4f876bd1
No related branches found
Tags v2.1-alpha5
No related merge requests found
Pipeline #14586 passed
......@@ -89,11 +89,11 @@ class PointsTableModel(QtCore.QAbstractTableModel):
column = self.columns[index.column()]
if column in ("abs_lat", "topo_bath"):
return super().data(index, role)
return None
if column == "zfond":
if self.valid_section_values[0][index.row()]:
return super().data(index, role)
return None
else:
return QtGui.QBrush(QtGui.QColor(255, 0, 0))
......@@ -101,7 +101,7 @@ class PointsTableModel(QtCore.QAbstractTableModel):
if self.valid_section_values[index.column() - self._NB_EXTRA_COLS + 1][
index.row()
]:
return super().data(index, role)
return None
else:
return QtGui.QBrush(QtGui.QColor(255, 0, 0))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment