From 63a84d0640c27345038aae1a8d48e7b9c0a88edc Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Thu, 22 Aug 2024 09:50:18 +0200 Subject: [PATCH] Communication isn't sequential Contribute to NP-327 --- include/communication/EmscriptenCommunication.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/communication/EmscriptenCommunication.h b/include/communication/EmscriptenCommunication.h index d6d07baed3..7f4c68a14a 100644 --- a/include/communication/EmscriptenCommunication.h +++ b/include/communication/EmscriptenCommunication.h @@ -52,9 +52,11 @@ class EmscriptenCommunication : public CommandLine * \brief Initiates the slicing of the next item. */ void sliceNext() override; + + bool isSequential() const { return false; } }; } // namespace cura #endif // __EMSCRIPTEN__ -#endif // EMSCRIPTENCOMMUNICATION_H \ No newline at end of file +#endif // EMSCRIPTENCOMMUNICATION_H