fix event system access in qt controller

This commit is contained in:
Jakub Trllo 2022-10-07 11:20:10 +02:00
parent 5b75511a60
commit 054b87bd68

View file

@ -67,10 +67,10 @@ class QtPublisherController(PublisherController):
super(QtPublisherController, self).__init__(*args, **kwargs)
self._event_system.add_callback(
self.event_system.add_callback(
"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
)