Browse Source

Fix BABYSTEP_ZPROBE_OFFSET (#12408)

Fix #12399

Did not compile without  `WATCH_HOTENDS || WATCH_THE_BED`.
Add condition to include "../../module/temperature.h".
AnHardt 6 years ago
parent
commit
be6271767f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/menu/menu.cpp

+ 1
- 1
Marlin/src/lcd/menu/menu.cpp View File

@@ -36,7 +36,7 @@
36 36
   #include "../../module/configuration_store.h"
37 37
 #endif
38 38
 
39
-#if WATCH_HOTENDS || WATCH_THE_BED
39
+#if WATCH_HOTENDS || WATCH_THE_BED || ENABLED(BABYSTEP_ZPROBE_OFFSET)
40 40
   #include "../../module/temperature.h"
41 41
 #endif
42 42
 

Loading…
Cancel
Save