Skip to content

Commit

Permalink
Merge pull request #85 from KaushikMalapati/table_filter
Browse files Browse the repository at this point in the history
BUG fixing activate_filter by rearranging parameters to work with qtpy
  • Loading branch information
ZLLentz authored Aug 7, 2023
2 parents 78d7516 + d0d7078 commit 992eecf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcdswidgets/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ def update_filter(self, row: int) -> None:
else:
self.showRow(row)

def activate_filter(self, filter_name: str, active: bool) -> None:
def activate_filter(self, active: bool, filter_name: str) -> None:
"""
Activate or deactivate a filter by name.
Expand Down

0 comments on commit 992eecf

Please sign in to comment.