mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-26 05:42:15 +01:00
fixed super
This commit is contained in:
parent
2691d294c4
commit
c39ea2b654
1 changed files with 1 additions and 1 deletions
|
|
@ -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."""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue