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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2019-05-03 14:09:42 +0300
committerYuSanka <yusanka@gmail.com>2019-05-03 14:09:42 +0300
commit4be4dc623c097b529b417692c543eae5ec6e4c5c (patch)
treeb553ac37ba9fbabc6ec1a39fb3054a9d8b669a46 /src/slic3r/GUI/GUI_ObjectManipulation.cpp
parentd2107fad2fb2bbd38538666fb8ab9557c9d98e31 (diff)
Fixed full statistics calculation
(calculate sum of volume and part_count only for solid parts)
Diffstat (limited to 'src/slic3r/GUI/GUI_ObjectManipulation.cpp')
-rw-r--r--src/slic3r/GUI/GUI_ObjectManipulation.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectManipulation.cpp b/src/slic3r/GUI/GUI_ObjectManipulation.cpp
index b8c37dcd0..d50f03050 100644
--- a/src/slic3r/GUI/GUI_ObjectManipulation.cpp
+++ b/src/slic3r/GUI/GUI_ObjectManipulation.cpp
@@ -21,9 +21,9 @@ ObjectManipulation::ObjectManipulation(wxWindow* parent) :
OG_Settings(parent, true)
#ifndef __APPLE__
, m_focused_option("")
- , m_manifold_warning_bmp(ScalableBitmap(parent, "exclamation"))
#endif // __APPLE__
{
+ m_manifold_warning_bmp = ScalableBitmap(parent, "exclamation");
m_og->set_name(_(L("Object Manipulation")));
m_og->label_width = 12;//125;
m_og->set_grid_vgap(5);
@@ -77,6 +77,9 @@ ObjectManipulation::ObjectManipulation(wxWindow* parent) :
def.gui_type = "legend";
def.tooltip = L("Object name");
def.width = 21;
+#ifdef __APPLE__
+ def.width = 19;
+#endif
def.default_value = new ConfigOptionString{ " " };
line.append_option(Option(def, "object_name"));
m_og->append_line(line);