From 524a611b8ef6d60cf68e8c7c2511bb0c1cc18ce7 Mon Sep 17 00:00:00 2001 From: Alexander Wiebel Date: Fri, 9 Jun 2017 15:56:08 +0200 Subject: [PATCH] [STYLE] --- .../datasetProfile/WMDatasetProfile.cpp | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/modules/datasetProfile/WMDatasetProfile.cpp b/src/modules/datasetProfile/WMDatasetProfile.cpp index 8489fed8a..dff032c02 100644 --- a/src/modules/datasetProfile/WMDatasetProfile.cpp +++ b/src/modules/datasetProfile/WMDatasetProfile.cpp @@ -97,16 +97,25 @@ void WMDatasetProfile::properties() m_snapSelectionsList->getSelectorFirst(), m_propCondition ); WPropertyHelper::PC_SELECTONLYONE::addTo( m_snapSelection ); - m_propAddKnobTrigger = m_properties->addProperty( "Add knob", "Add a segment and a corresponding manipulator knob to profile.", WPVBaseTypes::PV_TRIGGER_READY, m_propCondition ); - - m_graphColor = m_properties->addProperty( "Graph color", "Color of the curve representing the data profile graph.", WColor( 0.2, 0.2, 0.2, 1.0 ) ); - - m_propLength = m_properties->addProperty( "Length", "Length of profile segments. Needs to activated by Use Length property", 60.0 ); + m_propAddKnobTrigger = m_properties->addProperty( "Add knob", + "Add a segment and a corresponding manipulator knob to profile.", + WPVBaseTypes::PV_TRIGGER_READY, + m_propCondition ); + + m_graphColor = m_properties->addProperty( "Graph color", + "Color of the curve representing the data profile graph.", + WColor( 0.2, 0.2, 0.2, 1.0 ) ); + + m_propLength = m_properties->addProperty( "Length", + "Length of profile segments. Needs to activated by Use Length property", + 60.0 ); m_propLength->setMin( 1 ); m_propLength->setMax( 500 ); m_propUseLength = m_properties->addProperty( "Use length", "Apply the value of the Length property.", false ); - m_propInterpolate = m_properties->addProperty( "Interpolate", "Use value of voxel closest to sample or interpolate between surrounding values.", true ); + m_propInterpolate = m_properties->addProperty( "Interpolate", + "Use value of voxel closest to sample or interpolate between surrounding values.", + true ); m_propNumSamples = m_properties->addProperty( "Number of sample points", "Number of samples along the overall profile.", 100 ); m_propNumSamples->setMin( 1 ); -- GitLab