Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PreCourlis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
opentelemac
PreCourlis
Commits
7b33e2bc
Commit
7b33e2bc
authored
1 year ago
by
Arnaud MORVAN
Browse files
Options
Downloads
Patches
Plain Diff
Fix super().data(index, role) crash QGIS on Windows
parent
4f876bd1
No related branches found
Branches containing commit
Tags
v2.1-alpha5
Tags containing commit
No related merge requests found
Pipeline
#14586
passed
1 year ago
Stage: test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
PreCourlis/widgets/points_table_model.py
+3
-3
3 additions, 3 deletions
PreCourlis/widgets/points_table_model.py
with
3 additions
and
3 deletions
PreCourlis/widgets/points_table_model.py
+
3
−
3
View file @
7b33e2bc
...
...
@@ -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
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment