Skip to content

Commit

Permalink
🐛 Fix UI include
Browse files Browse the repository at this point in the history
Followup to ~2
  • Loading branch information
thinkyhead committed Mar 11, 2022
1 parent b9ef0f4 commit f516c9e
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions Marlin/src/gcode/bedlevel/abl/G29.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,6 @@
#include "../../../module/probe.h"
#include "../../queue.h"

#if HAS_STATUS_MESSAGE
#include "../../../lcd/marlinui.h"
#endif

#if ENABLED(AUTO_BED_LEVELING_LINEAR)
#include "../../../libs/least_squares_fit.h"
#endif
Expand All @@ -48,9 +44,7 @@
#include "../../../libs/vector_3.h"
#endif

#define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
#include "../../../core/debug_out.h"

#include "../../../lcd/marlinui.h"
#if ENABLED(EXTENSIBLE_UI)
#include "../../../lcd/extui/ui_api.h"
#elif ENABLED(DWIN_CREALITY_LCD)
Expand All @@ -63,6 +57,9 @@
#include "../../../module/tool_change.h"
#endif

#define DEBUG_OUT ENABLED(DEBUG_LEVELING_FEATURE)
#include "../../../core/debug_out.h"

#if ABL_USES_GRID
#if ENABLED(PROBE_Y_FIRST)
#define PR_OUTER_VAR abl.meshCount.x
Expand Down

0 comments on commit f516c9e

Please sign in to comment.