Add a dimension axis to name in individual measurements.

This commit is contained in:
Roman Telezhynskyi 2022-02-14 13:46:11 +02:00
parent 0b7d139680
commit 77138b0364

View File

@ -1105,15 +1105,15 @@ QString VMeasurements::IMDName(IMD type)
case IMD::N: case IMD::N:
return tr("None"); return tr("None");
case IMD::X: case IMD::X:
return tr("Height"); return tr("Height") + " (X)";
case IMD::Y: case IMD::Y:
return tr("Size"); return tr("Size") + " (Y)";
case IMD::W: case IMD::W:
return tr("Waist"); return tr("Waist") + " (W)";
case IMD::Z: case IMD::Z:
return tr("Hip"); return tr("Hip") + " (Z)";
default: default:
return QString(); return {};
} }
} }