From b87c3a986bc2f6613138e3316e85e396dccc2c32 Mon Sep 17 00:00:00 2001 From: DrSlony Date: Fri, 17 Oct 2014 13:50:51 +0200 Subject: [PATCH] Changed L a b to L* a* b*, issue 2539 --- rtgui/labcurve.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rtgui/labcurve.cc b/rtgui/labcurve.cc index e8ef7a3c2..542f325c7 100644 --- a/rtgui/labcurve.cc +++ b/rtgui/labcurve.cc @@ -78,11 +78,11 @@ LCurve::LCurve () : FoldableToolPanel(this) { curveEditorG = new CurveEditorGroup (options.lastLabCurvesDir); curveEditorG->setCurveListener (this); - lshape = static_cast(curveEditorG->addCurve(CT_Diagonal, "L")); + lshape = static_cast(curveEditorG->addCurve(CT_Diagonal, "L*")); lshape->setTooltip(M("TP_LABCURVE_CURVEEDITOR_LL_TOOLTIP")); lshape->setEditID(EUID_Lab_LCurve, BT_SINGLEPLANE_FLOAT); - ashape = static_cast(curveEditorG->addCurve(CT_Diagonal, "a")); + ashape = static_cast(curveEditorG->addCurve(CT_Diagonal, "a*")); ashape->setEditID(EUID_Lab_aCurve, BT_SINGLEPLANE_FLOAT); ashape->setRangeLabels( @@ -97,7 +97,7 @@ LCurve::LCurve () : FoldableToolPanel(this) { ashape->setLeftBarBgGradient(milestones); milestones.clear(); - bshape = static_cast(curveEditorG->addCurve(CT_Diagonal, "b")); + bshape = static_cast(curveEditorG->addCurve(CT_Diagonal, "b*")); bshape->setRangeLabels( M("TP_LABCURVE_CURVEEDITOR_B_RANGE1"), M("TP_LABCURVE_CURVEEDITOR_B_RANGE2"), M("TP_LABCURVE_CURVEEDITOR_B_RANGE3"), M("TP_LABCURVE_CURVEEDITOR_B_RANGE4")