Skip to content

Commit

Permalink
Fix wrong extruder e0 display
Browse files Browse the repository at this point in the history
  • Loading branch information
bkerler authored and danopernis committed Dec 13, 2024
1 parent 8a788ae commit add06ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/screen_menu_experimental_settings_release.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void ScreenMenuExperimentalSettings::windowEvent(window_t *sender, GUI_event_t e
Invalidate();
break;
case ClickCommand::Reset_steps:
Item<MI_STEPS_PER_UNIT_E>().SetVal(config_store().axis_steps_per_unit_e0.default_val);
Item<MI_STEPS_PER_UNIT_E>().SetVal(std::abs(config_store().axis_steps_per_unit_e0.default_val));
Invalidate();
break;
case ClickCommand::Reset_directions:
Expand Down

0 comments on commit add06ba

Please sign in to comment.