Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2022-01-21 18:53:57 +0300
committerYuSanka <yusanka@gmail.com>2022-01-21 18:54:18 +0300
commit959804c80ce449b7ea008494f32a75a287204742 (patch)
tree228df4a820fefba5074922ffcfa302843f80af26 /src/slic3r/GUI/Plater.hpp
parent0cc3a67b8c1e807089b27b27c7a4800fa0c3fa37 (diff)
Fixed a use of uninitialized variables reported by MemorySanitizer
Diffstat (limited to 'src/slic3r/GUI/Plater.hpp')
-rw-r--r--src/slic3r/GUI/Plater.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/Plater.hpp b/src/slic3r/GUI/Plater.hpp
index 3b4236a61..581e63034 100644
--- a/src/slic3r/GUI/Plater.hpp
+++ b/src/slic3r/GUI/Plater.hpp
@@ -64,7 +64,7 @@ enum class ActionButtonType : int;
class Sidebar : public wxPanel
{
- ConfigOptionMode m_mode;
+ ConfigOptionMode m_mode{ConfigOptionMode::comSimple};
public:
Sidebar(Plater *parent);
Sidebar(Sidebar &&) = delete;