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
 
44
 
45
 bool probe_single_point() {
45
 bool probe_single_point() {
46
   do_blocking_move_to_z(TERN(BLTOUCH, Z_CLEARANCE_DEPLOY_PROBE, Z_CLEARANCE_BETWEEN_PROBES));
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
   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);
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
   DEBUG_ECHOLNPAIR("probe_single_point: ", z_probed_height, "mm");
49
   DEBUG_ECHOLNPAIR("probe_single_point: ", z_probed_height, "mm");
50
   z_measured[tram_index] = z_probed_height;
50
   z_measured[tram_index] = z_probed_height;
82
   ACTION_ITEM(MSG_BUTTON_DONE, []{
82
   ACTION_ITEM(MSG_BUTTON_DONE, []{
83
     probe.stow(); // Stow before exiting Tramming Wizard
83
     probe.stow(); // Stow before exiting Tramming Wizard
84
     ui.goto_previous_screen_no_defer();
84
     ui.goto_previous_screen_no_defer();
85
-    });
85
+  });
86
   END_MENU();
86
   END_MENU();
87
 }
87
 }
88
 
88
 

Loading…
Cancel
Save