Commit 26e52685 authored by Dan Pascu's avatar Dan Pascu

Fixed call to super

parent c4217461
......@@ -17,7 +17,7 @@ class IconSelector(QLabel):
default_icon = QtDynamicProperty('default_icon', unicode)
def __init__(self, parent=None):
super(QLabel, self).__init__(parent)
super(IconSelector, self).__init__(parent)
self.setMinimumSize(36, 36)
self.filename = None
self.default_icon = None
......
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