fixed super

This commit is contained in:
iLLiCiTiT 2021-08-13 09:22:54 +02:00
parent 2691d294c4
commit c39ea2b654

View file

@ -60,7 +60,7 @@ class MultiSelectionComboBox(QtWidgets.QComboBox):
def focusInEvent(self, event):
self.focused_in.emit()
return super(SettingsComboBox, self).focusInEvent(event)
return super(MultiSelectionComboBox, self).focusInEvent(event)
def mousePressEvent(self, event):
"""Reimplemented."""