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
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2018-12-11 19:49:31 +0300
committerbubnikv <bubnikv@gmail.com>2018-12-11 19:49:31 +0300
commit09c539a24233a0ff41b54720870fec3725f130d7 (patch)
tree8ee60e9c0ff7d279557b3a902b7f83b009653f43 /xs
parent2b9319eea15fab2624586c03fd56574780db793b (diff)
Trigger background processing update when switching to a preview tab.
Implements "Go Direct to the preview screen after slicing #152"
Diffstat (limited to 'xs')
-rw-r--r--xs/xsp/Print.xsp5
1 files changed, 0 insertions, 5 deletions
diff --git a/xs/xsp/Print.xsp b/xs/xsp/Print.xsp
index 5d17ac258..aa90a3ad9 100644
--- a/xs/xsp/Print.xsp
+++ b/xs/xsp/Print.xsp
@@ -49,8 +49,6 @@ _constant()
Ref<StaticPrintConfig> config()
%code%{ RETVAL = &THIS->config(); %};
Points copies();
- t_layer_height_ranges layer_height_ranges()
- %code%{ RETVAL = THIS->layer_height_ranges; %};
std::vector<double> layer_height_profile()
%code%{ RETVAL = THIS->layer_height_profile; %};
Clone<BoundingBox> bounding_box();
@@ -58,9 +56,6 @@ _constant()
Points _shifted_copies()
%code%{ RETVAL = THIS->copies(); %};
- void set_layer_height_ranges(t_layer_height_ranges layer_height_ranges)
- %code%{ THIS->layer_height_ranges = layer_height_ranges; %};
-
size_t layer_count();
Ref<Layer> get_layer(int idx);