Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2019-05-25 12:26:08 +0300
committerDavid Crocker <dcrocker@eschertech.com>2019-05-25 12:26:08 +0300
commit73461819be81e0f8294a3810e644a9d88adf27d2 (patch)
treeb201b55712de20b06fe96d97e43c80cd98af3b7e /src/Display
parent07f1bd484874d7a3f0b85f40fc47bd9e9990c204 (diff)
2.03RC3 provisional
Feature improvements/changed behaviour: - M584 formatting improvement when no extruders - In CoreNG, increment I2C reset count when resetting the I2C system - Recognise filament usage comment in Prusa slicer - G53 is now available even when workplace coordinates not supported in build (cancels tool offsets) - For E3D: scale feed rate in proportion to total mix, for serial extruder drives etc. - Allow M203 max speeds lower than 1mm/sec - Enable laser in Duet085 build - M563 P# with no other parameters: better response formatting when no heaters or no drives - Added extra diagnostics for when a filename is too long Bug fixes: - Problem with leadscrew move when driver numbers >= MaxAxes are used to drive Z motors - Added missing newline at end of some error messages - M585 L parameter was not working - In resume.g a G1 R command goes to the wrong coordinates if workplace coordinate offsets are being used - Homing files when workplace coordinate offsets were active cause other axes to move - Resurrect.g all coordinates need to be machine coordinates - Resurrect.g restore workplace # and workplace offsets - Error with babystepping: incorrect sign when doing tool offset inverse transform, so it restores an incorrect Z position
Diffstat (limited to 'src/Display')
-rw-r--r--src/Display/MenuItem.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Display/MenuItem.cpp b/src/Display/MenuItem.cpp
index 9fe5ecb1..fc97e2bb 100644
--- a/src/Display/MenuItem.cpp
+++ b/src/Display/MenuItem.cpp
@@ -372,7 +372,7 @@ void ValueMenuItem::Draw(Lcd7920& lcd, PixelNumber rightMargin, bool highlight,
case 13: // U
case 14: // V
case 15: // W
- currentValue.f = reprap.GetGCodes().GetUserPosition()[itemNumber - 10];
+ currentValue.f = reprap.GetGCodes().GetUserCoordinate(itemNumber - 10);
break;
case 20: