Index: sources/gui/qml/pages/posttreatment/PostTreatmentBase.qml =================================================================== diff -u -reb3bbd3e203463dc3634ecb009b8a1390bb87012 -r7c12b8ce1964a37e856ebcae205f8b4ed19f3c6a --- sources/gui/qml/pages/posttreatment/PostTreatmentBase.qml (.../PostTreatmentBase.qml) (revision eb3bbd3e203463dc3634ecb009b8a1390bb87012) +++ sources/gui/qml/pages/posttreatment/PostTreatmentBase.qml (.../PostTreatmentBase.qml) (revision 7c12b8ce1964a37e856ebcae205f8b4ed19f3c6a) @@ -32,8 +32,11 @@ onVisibleChanged: if (visible) { _root.updateModel() } function updateModel () { - let group = stepNames[stackStepIndex] - if ( group === undefined ) group = "" + let stepName = stepNames[stackStepIndex] + if ( stepName === undefined ) stepName = "" + + let group = vSettings.groupFormat(stepName, _root.subStepName.length === 0 ? "" : _root.subStepName ) + let instructionsGroup = vSettings.instructions[group] if ( instructionsGroup !== undefined ) {