(#119) Improved naming of Property Filters

Finalized.
This commit is contained in:
Jacob Støren
2015-07-02 12:49:28 +02:00
parent bfdc00edaf
commit 1a3a2f1ff5
8 changed files with 60 additions and 6 deletions

View File

@@ -2132,3 +2132,14 @@ void RiuMainWindow::setExpanded(const caf::PdmObject* pdmObject, bool expanded)
m_treeView->setExpanded(mi, expanded);
}
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RiuMainWindow::forceProjectTreeRepaint()
{
// This is a hack to force the treeview redraw.
// Needed for some reason when changing names and icons in the model
m_treeView->scroll(0,1);
m_treeView->scroll(0,-1);
}