mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-07-12 21:51:48 +08:00
Don't grey out the retract_speed option when using firmware retraction because it's still used by auto-speed pressure regulator. #3283
This commit is contained in:
parent
52c68955d2
commit
32ba66c48f
@ -1385,7 +1385,12 @@ sub _update {
|
|||||||
|
|
||||||
# some options only apply when not using firmware retraction
|
# some options only apply when not using firmware retraction
|
||||||
$self->get_field($_, $i)->toggle($retraction && !$config->use_firmware_retraction)
|
$self->get_field($_, $i)->toggle($retraction && !$config->use_firmware_retraction)
|
||||||
for qw(retract_speed retract_restart_extra wipe);
|
for qw(retract_restart_extra wipe);
|
||||||
|
|
||||||
|
# retraction speed is also used by auto-speed pressure regulator, even when
|
||||||
|
# user enabled firmware retraction
|
||||||
|
$self->get_field('retract_speed', $i)->toggle($retraction);
|
||||||
|
|
||||||
if ($config->use_firmware_retraction && $config->get_at('wipe', $i)) {
|
if ($config->use_firmware_retraction && $config->get_at('wipe', $i)) {
|
||||||
my $dialog = Wx::MessageDialog->new($self,
|
my $dialog = Wx::MessageDialog->new($self,
|
||||||
"The Wipe option is not available when using the Firmware Retraction mode.\n"
|
"The Wipe option is not available when using the Firmware Retraction mode.\n"
|
||||||
|
@ -882,7 +882,7 @@ PrintConfigDef::PrintConfigDef()
|
|||||||
def = this->add("retract_speed", coFloats);
|
def = this->add("retract_speed", coFloats);
|
||||||
def->label = "Speed";
|
def->label = "Speed";
|
||||||
def->full_label = "Retraction Speed";
|
def->full_label = "Retraction Speed";
|
||||||
def->tooltip = "The speed for retractions (it only applies to the extruder motor).";
|
def->tooltip = "The speed for retractions (it only applies to the extruder motor). If you use the Firmware Retraction option, please note this value still affects the auto-speed pressure regulator.";
|
||||||
def->sidetext = "mm/s";
|
def->sidetext = "mm/s";
|
||||||
def->cli = "retract-speed=f@";
|
def->cli = "retract-speed=f@";
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user