Skip to content

Commit

Permalink
release 5.13.8
Browse files Browse the repository at this point in the history
fix error when canceling a computation channel window
  • Loading branch information
danielhrisca committed Nov 5, 2019
1 parent ab358fe commit c544088
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion asammdf/gui/widgets/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1287,9 +1287,9 @@ def keyPressEvent(self, event):
dlg.setModal(True)
dlg.exec_()
sig = dlg.result
sig.uuid = uuid4()

if sig is not None:
sig.uuid = uuid4()
self.add_new_channels([sig], computed=True)
self.computation_channel_inserted.emit()

Expand Down
2 changes: 1 addition & 1 deletion asammdf/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
""" asammdf version module """

__version__ = "5.13.7"
__version__ = "5.13.8"

0 comments on commit c544088

Please sign in to comment.