Skip to content

Commit

Permalink
fix keyboard interaction in the search window
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhrisca committed Dec 6, 2023
1 parent 24eb788 commit 44b2097
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/asammdf/gui/dialogs/advanced_search_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,7 @@ def keyPressEvent(self, event):
root = self.invisibleRootItem()
for item in selected_items:
(item.parent() or root).removeChild(item)

event.accept()
else:
super().keyPressEvent(event)
2 changes: 1 addition & 1 deletion src/asammdf/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" asammdf version module """

__version__ = "7.3.19.dev6"
__version__ = "7.3.19.dev7"

0 comments on commit 44b2097

Please sign in to comment.