From 9b3ed8e4e67694f8cf29f7053bb5f2c76134c9dd Mon Sep 17 00:00:00 2001 From: SoftFever Date: Tue, 24 Jan 2023 21:40:29 +0800 Subject: [PATCH] fix crashes when switch timelapse and vase mode Signed-off-by: SoftFever --- src/libslic3r/PrintConfig.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index 792eaf0b3..1f9617a5a 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -153,8 +153,8 @@ enum BrimType { btOuterAndInner, }; -enum TimelapseType { - tlTraditional, +enum TimelapseType : int { + tlTraditional = 0, tlSmooth };