-
-
Notifications
You must be signed in to change notification settings - Fork 519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP Added travel_speed_z. #1231
WIP Added travel_speed_z. #1231
Conversation
src/libslic3r/GCode.cpp
Outdated
@@ -3741,6 +3741,8 @@ std::string GCode::_before_extrude(const ExtrusionPath &path, const std::string | |||
speed = m_config.get_abs_value("ironing_speed"); | |||
} else if (path.role() == erNone) { | |||
speed = m_config.get_abs_value("travel_speed"); | |||
} else if (path.role() == erNone) { | |||
speed = m_config.get_abs_value("travel_speed_z"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
shouldn't you also test the path to check taht it contains only z-move? and put the if before the travel_spedd one or it will never tigger
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actually this is not required at all, since the speed is set in GCodeWriter::_travel_to_z
.
you also have to add the travel_speed_z to preset.cpp and to resources/ui_layout/print.ui |
Changes to |
Addresses #1154