ExtUI Mesh Leveling Extensions (#13363)
This commit is contained in:
committed by
Scott Lahteine
parent
050eac03af
commit
c03df89921
@ -173,8 +173,12 @@ void GcodeSuite::G29() {
|
||||
else
|
||||
return echo_not_entered('J');
|
||||
|
||||
if (parser.seenval('Z'))
|
||||
if (parser.seenval('Z')) {
|
||||
mbl.z_values[ix][iy] = parser.value_linear_units();
|
||||
#if ENABLED(EXTENSIBLE_UI)
|
||||
ExtUI::onMeshUpdate(ix, iy, mbl.z_values[ix][iy]);
|
||||
#endif
|
||||
}
|
||||
else
|
||||
return echo_not_entered('Z');
|
||||
break;
|
||||
|
Reference in New Issue
Block a user