Commit efdab869 authored by Clément Fauconnier's avatar Clément Fauconnier

removed document and folder icons + folder background color

parent 319671ee
......@@ -476,7 +476,7 @@ QVariant UBDocumentTreeModel::data(const QModelIndex &index, int role) const
}
if(role == Qt::BackgroundRole){
if (isConstant(index) || dataNode->nodeType() == UBDocumentTreeNode::Catalog) {
if (isConstant(index)) {
return QBrush(0xD9DFEB);
}
......@@ -500,12 +500,12 @@ QVariant UBDocumentTreeModel::data(const QModelIndex &index, int role) const
} else if (isConstant(index)) {
return QIcon(":images/libpalette/ApplicationsCategory.svg");
}
switch (static_cast<int>(dataNode->nodeType())) {
case UBDocumentTreeNode::Catalog :
return QIcon(":images/folder.png");
case UBDocumentTreeNode::Document :
return QIcon(":images/toolbar/board.png");
}
// switch (static_cast<int>(dataNode->nodeType())) {
// case UBDocumentTreeNode::Catalog :
// return QIcon(":images/folder.png");
// case UBDocumentTreeNode::Document :
// return QIcon(":images/toolbar/board.png");
// }
}
break;
case (Qt::FontRole) :
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment