From ed1439613e1ecb7f53582c7119bb305fd02733ac Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Sun, 21 Jul 2019 21:30:26 +0300 Subject: [PATCH] Fixed issue #718, "Error when using measurement A23 waist_to_floor". (grafted from 39075c5793253189542fb8dabb2bf032f42f047f) --HG-- branch : develop --- src/libs/vpatterndb/vtranslatemeasurements.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libs/vpatterndb/vtranslatemeasurements.cpp b/src/libs/vpatterndb/vtranslatemeasurements.cpp index 306accff6..206bcd105 100644 --- a/src/libs/vpatterndb/vtranslatemeasurements.cpp +++ b/src/libs/vpatterndb/vtranslatemeasurements.cpp @@ -362,9 +362,9 @@ void VTranslateMeasurements::InitGroupA() m = translate("VTranslateMeasurements", "height_waist_back", "Name in a formula. Don't use math symbols and space in name!!!!"); g = translate("VTranslateMeasurements", "Height: Waist Back", "Full measurement name."); - d = translate("VTranslateMeasurements", "Vertical height from Waist Back to floor. ('Height: Waist Front'' - " - "'Leg: Crotch to floor'').", "Full measurement description."); - InitMeasurement(heightWaistBack_M, m, g, d, "A23", "(height_waist_front - leg_crotch_to_floor)"); + d = translate("VTranslateMeasurements", "Vertical height from Waist Back to floor.", "Full measurement description."); + InitMeasurement(heightWaistBack_M, m, g, d, "A23"); + //================================================================================================================= }