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-06-05 14:52:53 +0300
committerYuSanka <yusanka@gmail.com>2019-06-05 14:52:53 +0300
commit67ed89c2405a242370066993c16e26fa26fdb6c4 (patch)
tree38dbf39e75f2ff5207259cca9e9e556d29ed098d /src/slic3r/GUI/GUI_ObjectLayers.hpp
parent401999b68b3e8e625356a9fc017427aa0903432f (diff)
Fixed OSX build and a bug when for part is able to add "layer_height" option
Diffstat (limited to 'src/slic3r/GUI/GUI_ObjectLayers.hpp')
-rw-r--r--src/slic3r/GUI/GUI_ObjectLayers.hpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/slic3r/GUI/GUI_ObjectLayers.hpp b/src/slic3r/GUI/GUI_ObjectLayers.hpp
index 0b404be4f..bec2a1f49 100644
--- a/src/slic3r/GUI/GUI_ObjectLayers.hpp
+++ b/src/slic3r/GUI/GUI_ObjectLayers.hpp
@@ -4,18 +4,22 @@
#include "GUI_ObjectSettings.hpp"
#include "wxExtensions.hpp"
+#ifdef __WXOSX__
+#include "..\libslic3r\PrintConfig.hpp"
+#endif
+
class wxBoxSizer;
namespace Slic3r {
class ModelObject;
+namespace GUI {
+class ConfigOptionsGroup;
+
typedef double coordf_t;
typedef std::pair<coordf_t, coordf_t> t_layer_height_range;
typedef std::map<t_layer_height_range, DynamicPrintConfig> t_layer_config_ranges;
-namespace GUI {
-class ConfigOptionsGroup;
-
class LayerRangeEditor : public wxTextCtrl
{
bool m_enter_pressed { false };