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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-08-09 13:12:11 +0300
committerbubnikv <bubnikv@gmail.com>2016-08-09 13:12:11 +0300
commit88bffa5341b94d48c36bccac63629565e11e855f (patch)
tree7bdfd5ddd6af602c9318f6c814668f2c7de56578
parent232662ff479313929084ae8d2de1ab42fe38cd55 (diff)
Corrected a mistake in the previous check-in.v3.0.6
-rw-r--r--Firmware/ultralcd.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/Firmware/ultralcd.cpp b/Firmware/ultralcd.cpp
index b5bd6ac33..4326b2a4e 100644
--- a/Firmware/ultralcd.cpp
+++ b/Firmware/ultralcd.cpp
@@ -1429,7 +1429,7 @@ void lcd_adjust_z() {
// Lets the user move the Z carriage up to the end stoppers.
// When done, it sets the current Z to Z_MAX_POS and returns true.
// Otherwise the Z calibration is not changed and false is returned.
-bool lcd_calibrate_z_end_stop_manual()
+bool lcd_calibrate_z_end_stop_manual(bool only_z)
{
bool clean_nozzle_asked = false;
@@ -1440,7 +1440,11 @@ bool lcd_calibrate_z_end_stop_manual()
// Until confirmed by the confirmation dialog.
for (;;) {
unsigned long previous_millis_cmd = millis();
- lcd_display_message_fullscreen_P(MSG_MOVE_CARRIAGE_TO_THE_TOP);
+ if (only_z) {
+ lcd_display_message_fullscreen_P(MSG_MOVE_CARRIAGE_TO_THE_TOP_Z);
+ }else{
+ lcd_display_message_fullscreen_P(MSG_MOVE_CARRIAGE_TO_THE_TOP);
+ }
// Until the user finishes the z up movement.
encoderDiff = 0;
encoderPosition = 0;