Skip to content

Commit

Permalink
release 5.13.5
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhrisca committed Oct 25, 2019
1 parent 13a2123 commit a1eeda2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion asammdf/gui/widgets/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def keyPressEvent(self, event):
return
self.itemWidget(selected_items[0]).keyPressEvent(event)

elif modifiers == (QtCore.Qt.ControlModifier | QtCore.Qt.ShiftModifier ) and key == QtCore.Qt.Key_T:
elif modifiers == (QtCore.Qt.ControlModifier | QtCore.Qt.ShiftModifier ) and key in (QtCore.Qt.Key_C, QtCore.Qt.Key_P):
selected_items = self.selectedItems()
if not selected_items:
return
Expand Down
8 changes: 4 additions & 4 deletions asammdf/gui/widgets/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -1400,8 +1400,8 @@ def set_current_uuid(self, uuid, force=False):

if uuid in self.common_axis_items:
if self.current_uuid not in self.common_axis_items or force:
for sig, vbox in zip(self.signals, self.view_boxes):
if sig.uuid not in self.common_axis_items:
for sig_, vbox in zip(self.signals, self.view_boxes):
if sig_.uuid not in self.common_axis_items:
vbox.setYLink(None)

vbox = self.view_boxes[index]
Expand All @@ -1417,8 +1417,8 @@ def set_current_uuid(self, uuid, force=False):

else:
self.common_viewbox.setYLink(None)
for sig, vbox in zip(self.signals, self.view_boxes):
if sig.uuid not in self.common_axis_items:
for sig_, vbox in zip(self.signals, self.view_boxes):
if sig_.uuid not in self.common_axis_items:
vbox.setYLink(None)

viewbox.setYRange(*self.view_boxes[index].viewRange()[1], padding=0)
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.4"
__version__ = "5.13.5"

0 comments on commit a1eeda2

Please sign in to comment.