Browse Source

Remove some excess whitepsace

Scott Lahteine 6 years ago
parent
commit
802f147686
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      Marlin/Marlin_main.cpp
  2. 2
    2
      Marlin/ultralcd_impl_HD44780.h

+ 2
- 2
Marlin/Marlin_main.cpp View File

@@ -5662,7 +5662,7 @@ void home_all_axes() { gcode_G28(true); }
5662 5662
           float a_sum = 0.0;
5663 5663
           LOOP_XYZ(axis) a_sum += delta_tower_angle_trim[axis];
5664 5664
           LOOP_XYZ(axis) delta_tower_angle_trim[axis] -= a_sum / 3.0;
5665
-          
5665
+
5666 5666
           // adjust delta_height and endstops by the max amount
5667 5667
           const float z_temp = MAX3(endstop_adj[A_AXIS], endstop_adj[B_AXIS], endstop_adj[C_AXIS]);
5668 5668
           home_offset[Z_AXIS] -= z_temp;
@@ -8564,7 +8564,7 @@ inline void gcode_M205() {
8564 8564
     #endif
8565 8565
     LOOP_XYZ(i) {
8566 8566
       if (parser.seen(axis_codes[i])) {
8567
-        if (parser.value_linear_units() * Z_HOME_DIR <= 0)         
8567
+        if (parser.value_linear_units() * Z_HOME_DIR <= 0)
8568 8568
           endstop_adj[i] = parser.value_linear_units();
8569 8569
         #if ENABLED(DEBUG_LEVELING_FEATURE)
8570 8570
           if (DEBUGGING(LEVELING)) {

+ 2
- 2
Marlin/ultralcd_impl_HD44780.h View File

@@ -790,11 +790,11 @@ static void lcd_implementation_status_screen() {
790 790
     lcd.setCursor(LCD_WIDTH - 8, 1);
791 791
     _draw_axis_label(Z_AXIS, PSTR(MSG_Z), blink);
792 792
     lcd.print(ftostr52sp(FIXFLOAT(current_position[Z_AXIS])));
793
-    
793
+
794 794
     #if HAS_LEVELING
795 795
       lcd.write(leveling_is_active() || blink ? '_' : ' ');
796 796
     #endif
797
-  
797
+
798 798
   #endif // LCD_HEIGHT > 2
799 799
 
800 800
   //

Loading…
Cancel
Save