Don't pre-load engine before other plug-ins

This was a fix for the post-processing plug-in that's no longer required.
It was also only applied when running from source, so obviously it's not required or we'd have seen it in the builds.
This commit is contained in:
Ghostkeeper 2020-06-19 15:35:04 +02:00
parent f8e648fcb3
commit ba8cb4ce4a
No known key found for this signature in database
GPG key ID: 37E2020986774393

View file

@ -756,7 +756,6 @@ class CuraApplication(QtApplication):
if not hasattr(sys, "frozen"):
self._plugin_registry.addPluginLocation(os.path.join(os.path.abspath(os.path.dirname(__file__)), "..", "plugins"))
self._plugin_registry.loadPlugin("ConsoleLogger")
self._plugin_registry.loadPlugin("CuraEngineBackend")
self._plugin_registry.loadPlugins()