Browse Source

🎨 Move PROPORTIONAL_FONT_RATIO

Scott Lahteine 3 years ago
parent
commit
1420427607
1 changed files with 9 additions and 9 deletions
  1. 9
    9
      Marlin/Configuration_adv.h

+ 9
- 9
Marlin/Configuration_adv.h View File

2337
 // For serial echo, the number of digits after the decimal point
2337
 // For serial echo, the number of digits after the decimal point
2338
 //#define SERIAL_FLOAT_PRECISION 4
2338
 //#define SERIAL_FLOAT_PRECISION 4
2339
 
2339
 
2340
+/**
2341
+ * Set the number of proportional font spaces required to fill up a typical character space.
2342
+ * This can help to better align the output of commands like `G29 O` Mesh Output.
2343
+ *
2344
+ * For clients that use a fixed-width font (like OctoPrint), leave this set to 1.0.
2345
+ * Otherwise, adjust according to your client and font.
2346
+ */
2347
+#define PROPORTIONAL_FONT_RATIO 1.0
2348
+
2340
 // @section extras
2349
 // @section extras
2341
 
2350
 
2342
 /**
2351
 /**
3781
 //#define REPORT_FAN_CHANGE   // Report the new fan speed when changed by M106 (and others)
3790
 //#define REPORT_FAN_CHANGE   // Report the new fan speed when changed by M106 (and others)
3782
 
3791
 
3783
 /**
3792
 /**
3784
- * Set the number of proportional font spaces required to fill up a typical character space.
3785
- * This can help to better align the output of commands like `G29 O` Mesh Output.
3786
- *
3787
- * For clients that use a fixed-width font (like OctoPrint), leave this set to 1.0.
3788
- * Otherwise, adjust according to your client and font.
3789
- */
3790
-#define PROPORTIONAL_FONT_RATIO 1.0
3791
-
3792
-/**
3793
  * Spend 28 bytes of SRAM to optimize the G-code parser
3793
  * Spend 28 bytes of SRAM to optimize the G-code parser
3794
  */
3794
  */
3795
 #define FASTER_GCODE_PARSER
3795
 #define FASTER_GCODE_PARSER

Loading…
Cancel
Save