Skip to content
Snippets Groups Projects
Commit 9a0816f5 authored by Allen, Bruce (CIV)'s avatar Allen, Bruce (CIV)
Browse files

fix filter by mark flag

parent 109fb013
No related branches found
No related tags found
No related merge requests found
......@@ -65,9 +65,9 @@ class GraphListSortFilterProxyModel(QSortFilterProxyModel):
# hide_unmarked
if self.hide_unmarked:
mark_index = super().sourceModel.index(
mark_index = super().sourceModel().index(
row, MARK_COLUMN, source_parent)
if super().sourceModel.data(mark_index) != "M":
if super().sourceModel().data(mark_index) != "M":
return False
# hide_unmatched_event_condition_traces
......
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