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:
authorbubnikv <bubnikv@gmail.com>2016-11-14 01:35:56 +0300
committerbubnikv <bubnikv@gmail.com>2016-11-14 01:35:56 +0300
commit7f1704b2ac561e4a7634e4a6928946d6034a5ecf (patch)
treed306134035c83d0dc1456fd7cc6bb4d69e55c567
parent9abe07852e0a22e3e8de7e55e8887109063a0bea (diff)
Disabled live preview by default as it is not stable and/or the calculation takes too long for interactive usage.version_1.31.5
-rw-r--r--lib/Slic3r/GUI/Plater/ObjectCutDialog.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/Slic3r/GUI/Plater/ObjectCutDialog.pm b/lib/Slic3r/GUI/Plater/ObjectCutDialog.pm
index cfdeba649..9e4b33976 100644
--- a/lib/Slic3r/GUI/Plater/ObjectCutDialog.pm
+++ b/lib/Slic3r/GUI/Plater/ObjectCutDialog.pm
@@ -30,7 +30,9 @@ sub new {
keep_upper => 1,
keep_lower => 1,
rotate_lower => 1,
- preview => 1,
+# preview => 1,
+# Disabled live preview by default as it is not stable and/or the calculation takes too long for interactive usage.
+ preview => 0,
};
my $optgroup;
@@ -258,7 +260,8 @@ sub _update {
$optgroup->get_field('keep_upper')->toggle(my $have_upper = abs($z - $optgroup->get_option('z')->max) > 0.1);
$optgroup->get_field('keep_lower')->toggle(my $have_lower = $z > 0.1);
$optgroup->get_field('rotate_lower')->toggle($z > 0 && $self->{cut_options}{keep_lower});
- $optgroup->get_field('preview')->toggle($self->{cut_options}{keep_upper} != $self->{cut_options}{keep_lower});
+# Disabled live preview by default as it is not stable and/or the calculation takes too long for interactive usage.
+# $optgroup->get_field('preview')->toggle($self->{cut_options}{keep_upper} != $self->{cut_options}{keep_lower});
# update cut button
if (($self->{cut_options}{keep_upper} && $have_upper)