mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 16:34:53 +01:00
fix event system access in qt controller
This commit is contained in:
parent
5b75511a60
commit
054b87bd68
1 changed files with 2 additions and 2 deletions
|
|
@ -67,10 +67,10 @@ class QtPublisherController(PublisherController):
|
||||||
|
|
||||||
super(QtPublisherController, self).__init__(*args, **kwargs)
|
super(QtPublisherController, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
self._event_system.add_callback(
|
self.event_system.add_callback(
|
||||||
"publish.process.started", self._qt_on_publish_start
|
"publish.process.started", self._qt_on_publish_start
|
||||||
)
|
)
|
||||||
self._event_system.add_callback(
|
self.event_system.add_callback(
|
||||||
"publish.process.stopped", self._qt_on_publish_stop
|
"publish.process.stopped", self._qt_on_publish_stop
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue