Fixed a crash on SLA with background processing on and with an empty

scene.
This commit is contained in:
bubnikv 2018-11-22 10:35:04 +01:00
parent c60ed7bc07
commit 28a502680a

View File

@ -147,7 +147,7 @@ public:
PrinterTechnology technology() const noexcept { return ptSLA; }
void clear() override;
bool empty() const override { return false; }
bool empty() const override { return m_objects.empty(); }
ApplyStatus apply(const Model &model, const DynamicPrintConfig &config) override;
void process() override;