Add the discovered printer functionality

This can be used in the add machine wizard to short circuit the creation of a printer.
So instead of first selecting a printer and then connecting it, it will be possible to have
a list that contains all network discovered printers (from all plugins that can do this).

This means we can select one of those printers and directly add it (thus no longer needing that step)

CURA-6179
This commit is contained in:
Jaime van Kessel 2019-02-27 11:05:54 +01:00
parent 5c354eb6a3
commit 21c6bba1ce
3 changed files with 33 additions and 4 deletions

View file

@ -745,6 +745,8 @@ class CuraApplication(QtApplication):
# Initialize Cura API
self._cura_API.initialize()
self._output_device_manager.start()
# Detect in which mode to run and execute that mode
if self._is_headless:
self.runWithoutGUI()