Browse Source

Fix formatting

Scott Lahteine 3 years ago
parent
commit
fbefe55102
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/lcd/menu/menu_tramming.cpp

+ 2
- 2
Marlin/src/lcd/menu/menu_tramming.cpp View File

@@ -44,7 +44,7 @@ static uint8_t tram_index = 0;
44 44
 
45 45
 bool probe_single_point() {
46 46
   do_blocking_move_to_z(TERN(BLTOUCH, Z_CLEARANCE_DEPLOY_PROBE, Z_CLEARANCE_BETWEEN_PROBES));
47
-  //Stow after each point with BLTouch "HIGH SPEED" mode for push-pin safety
47
+  // Stow after each point with BLTouch "HIGH SPEED" mode for push-pin safety
48 48
   const float z_probed_height = probe.probe_at_point(screws_tilt_adjust_pos[tram_index], TERN(BLTOUCH_HS_MODE, PROBE_PT_STOW, PROBE_PT_RAISE), 0, true);
49 49
   DEBUG_ECHOLNPAIR("probe_single_point: ", z_probed_height, "mm");
50 50
   z_measured[tram_index] = z_probed_height;
@@ -82,7 +82,7 @@ void tramming_wizard_menu() {
82 82
   ACTION_ITEM(MSG_BUTTON_DONE, []{
83 83
     probe.stow(); // Stow before exiting Tramming Wizard
84 84
     ui.goto_previous_screen_no_defer();
85
-    });
85
+  });
86 86
   END_MENU();
87 87
 }
88 88
 

Loading…
Cancel
Save