Skip to content
Snippets Groups Projects
Commit 554abb92 authored by Arturs Bekasovs's avatar Arturs Bekasovs
Browse files

Refs #8030. Show structure of base CompositeFunction only

We don't need to display structure of it's derivates (e.g. Convolution),
apart from ProductFunction.
parent 8dbd4ec2
No related branches found
No related tags found
No related merge requests found
...@@ -582,7 +582,7 @@ QString PropertyHandler::functionPrefix()const ...@@ -582,7 +582,7 @@ QString PropertyHandler::functionPrefix()const
*/ */
QString PropertyHandler::functionStructure() const QString PropertyHandler::functionStructure() const
{ {
if (m_cf) if ( m_cf && (m_cf->name() == "CompositeFunction" || m_cf->name() == "ProductFunction") )
{ {
QStringList children; QStringList children;
...@@ -593,12 +593,12 @@ QString PropertyHandler::functionStructure() const ...@@ -593,12 +593,12 @@ QString PropertyHandler::functionStructure() const
if ( children.empty() ) if ( children.empty() )
{ {
return QString::fromStdString("Empty " + function()->name()); return QString::fromStdString("Empty " + m_cf->name());
} }
QChar op('+'); QChar op('+');
if (function()->name() == "ProductFunction") if (m_cf->name() == "ProductFunction")
{ {
op = '*'; op = '*';
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment