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

MaterialEditor now works on copy of MaterialModel

parent 5de4a5c4
No related branches found
No related tags found
No related merge requests found
......@@ -59,9 +59,8 @@ MaterialEditorDialog::MaterialEditorDialog(MaterialModel *materialModel, QWidget
//! replaces original material model with the model modified by MaterialEditor
void MaterialEditorDialog::onOKButton()
{
// m_origMaterialModel->clear();
// m_origMaterialModel->initFrom(m_tmpMaterialModel.get(), 0);
m_origMaterialModel->clear();
m_origMaterialModel->initFrom(m_tmpMaterialModel.get(), 0);
accept();
}
......@@ -74,9 +73,9 @@ void MaterialEditorDialog::onCancelButton()
void MaterialEditorDialog::init_material_editor()
{
Q_ASSERT(m_origMaterialModel);
// m_tmpMaterialModel.reset(m_origMaterialModel->createCopy());
// m_materialEditor = new MaterialEditor(m_tmpMaterialModel.get(), this);
m_materialEditor = new MaterialEditor(m_origMaterialModel, this);
m_tmpMaterialModel.reset(m_origMaterialModel->createCopy());
m_materialEditor = new MaterialEditor(m_tmpMaterialModel.get(), this);
// m_materialEditor = new MaterialEditor(m_origMaterialModel, this);
}
MaterialProperty MaterialEditorDialog::getSelectedMaterialProperty()
......
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