Commit 24ff5b7c authored by Dan Pascu's avatar Dan Pascu

Added missing parent in __init__ for the SegmentButton

parent 48379e75
...@@ -103,7 +103,7 @@ class SegmentButton(QToolButton): ...@@ -103,7 +103,7 @@ class SegmentButton(QToolButton):
shown = pyqtSignal() shown = pyqtSignal()
def __init__(self, parent=None): def __init__(self, parent=None):
super(SegmentButton, self).__init__() super(SegmentButton, self).__init__(parent)
self.type = SingleSegment self.type = SingleSegment
def _get_type(self): def _get_type(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment