Skip to content
Snippets Groups Projects
Commit b6924c98 authored by Omid Hosseini's avatar Omid Hosseini
Browse files

Feature plot issue

parent 33debef9
No related branches found
No related tags found
1 merge request!20Feature plot issue
...@@ -1236,7 +1236,11 @@ class ChannelWidget(WidgetBase, *load_ui("ChannelWidget.ui")): ...@@ -1236,7 +1236,11 @@ class ChannelWidget(WidgetBase, *load_ui("ChannelWidget.ui")):
def setSelection(self, current, old): def setSelection(self, current, old):
super().setSelection(current, old) super().setSelection(current, old)
try: try:
self.uiPlotResponseButton.disconnect() # There is difference between Python and C++ version of disconnect
# In order to make sure that the disconnect function is executed
# correctly, Three arguments are needed to be passed to disconnect
# function.
self.uiPlotResponseButton.disconnect(None, None, None)
except TypeError: except TypeError:
pass pass
node = current.internalPointer() node = current.internalPointer()
......
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