From 5b8f88bc30912863ba84a3032af3d47b348247ce Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 28 Jun 2023 14:57:29 +0200 Subject: [PATCH] Add broadcast slot to slot id's CURA-10618 --- cura/plugins/v0/slot_id.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cura/plugins/v0/slot_id.proto b/cura/plugins/v0/slot_id.proto index 2c1721c..b1e4ef1 100644 --- a/cura/plugins/v0/slot_id.proto +++ b/cura/plugins/v0/slot_id.proto @@ -3,6 +3,7 @@ syntax = "proto3"; package cura.plugins.v0; enum SlotID { - SIMPLIFY = 0; - POSTPROCESS = 1; + BROADCAST = 0; + SIMPLIFY = 1; + POSTPROCESS = 2; } \ No newline at end of file