Skip to content

Commit 115fd24

Browse files
committed
Fix bad navigation after rebase #189
1 parent c12e2ce commit 115fd24

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Marlin/src/lcd/extui/lib/dgus_creality/creality_touch/AxisSettingsHandler.cpp

+1-3
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ void AxisSettingsHandler::HandleNavigation(DGUS_VP_Variable &var, void *val_ptr)
5757
break;
5858
}
5959

60-
ScreenHandler.GotoScreen(DGUSLCD_SCREEN_AXIS_SETTINGS_AXIS);
61-
6260
// Load settings for axis
6361
axis_steps_mm = planner.settings.axis_steps_per_mm[current_axis];
6462
max_acceleration_mm_per_s2 = planner.settings.max_acceleration_mm_per_s2[current_axis];
@@ -135,7 +133,7 @@ void AxisSettingsHandler::HandleNavigation(DGUS_VP_Variable &var, void *val_ptr)
135133
#endif
136134

137135
// Nav
138-
ScreenHandler.GotoScreen(DGUSLCD_SCREEN_AXIS_SETTINGS_NAV);
136+
ScreenHandler.GotoScreen(DGUSLCD_SCREEN_AXIS_SETTINGS_AXIS);
139137
}
140138

141139
void AxisSettingsHandler::HandleBackNavigation(DGUS_VP_Variable &var, void *val_ptr) {

0 commit comments

Comments
 (0)