Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Marlin/src/module/probe.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

#endif

#if HAS_BED_PROBE || ENABLED(PROBE_MANUALLY)
#if HAS_BED_PROBE || HAS_LEVELING
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Marlin/src/inc/Conditionals_post.h:1424:
#define HAS_LEVELING (HAS_ABL_OR_UBL || ENABLED(MESH_BED_LEVELING))

HAS_LEVELING should be enough no ?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm, unsure, maybe not.... :p

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will work for 90% of cases, if not all.

#if IS_KINEMATIC
constexpr float printable_radius = (
#if ENABLED(DELTA)
Expand Down