Skip to content
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

[CURA-11084] Add missing 'perform_prime' member-variable. #13

Merged
merged 1 commit into from
Sep 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions cura/plugins/v0/gcodepath.proto
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,15 @@ message GCodePath {
bool retract = 8;
bool unretract_before_last_travel_move = 9;
bool perform_z_hop = 10;
bool skip_agressive_merge_hint = 11;
bool done = 12;
double fan_speed = 13;
string mesh_name = 14;
cura.plugins.v0.PrintFeature feature = 15;
SpeedDerivatives speed_derivatives = 16;
int64 line_width = 17;
int64 layer_thickness = 18;
double flow_ratio = 19;
bool is_bridge_path = 20;
bool perform_prime = 11;
bool skip_agressive_merge_hint = 12;
bool done = 13;
double fan_speed = 14;
string mesh_name = 15;
cura.plugins.v0.PrintFeature feature = 16;
SpeedDerivatives speed_derivatives = 17;
int64 line_width = 18;
int64 layer_thickness = 19;
double flow_ratio = 20;
bool is_bridge_path = 21;
}