Skip to content
Snippets Groups Projects
Commit 823211f5 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

Disabled layer thickness in GUI for air and substrate layers.

parent 73a510ae
No related branches found
No related tags found
No related merge requests found
......@@ -54,6 +54,12 @@ void MultiLayerItem::updateLayers()
} else {
childAt(i)->setPropertyAppearance(LayerItem::P_ROUGHNESS, PropertyAttribute::VISIBLE);
}
if(i==0 || i==childItemCount()-1) {
childAt(i)->setPropertyAppearance(LayerItem::P_THICKNESS, PropertyAttribute::DISABLED);
} else {
childAt(i)->setPropertyAppearance(LayerItem::P_THICKNESS, PropertyAttribute::VISIBLE);
}
}
}
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