Fix incompatible types error (#15009)
This commit is contained in:
parent
825c2c3dc4
commit
69641f1420
|
@ -268,7 +268,7 @@ namespace ExtUI {
|
||||||
}
|
}
|
||||||
|
|
||||||
float getAxisPosition_mm(const extruder_t extruder) {
|
float getAxisPosition_mm(const extruder_t extruder) {
|
||||||
const uint8_t old_tool = active_extruder;
|
const extruder_t old_tool = getActiveTool();
|
||||||
setActiveTool(extruder, true);
|
setActiveTool(extruder, true);
|
||||||
const float pos = flags.manual_motion ? destination[E_AXIS] : current_position[E_AXIS];
|
const float pos = flags.manual_motion ? destination[E_AXIS] : current_position[E_AXIS];
|
||||||
setActiveTool(old_tool, true);
|
setActiveTool(old_tool, true);
|
||||||
|
|
Loading…
Reference in a new issue