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 ...@@ -476,7 +476,7 @@ QVariant UBDocumentTreeModel::data(const QModelIndex &index, int role) const
} }
if(role == Qt::BackgroundRole){ if(role == Qt::BackgroundRole){
if (isConstant(index) || dataNode->nodeType() == UBDocumentTreeNode::Catalog) { if (isConstant(index)) {
return QBrush(0xD9DFEB); return QBrush(0xD9DFEB);
} }
...@@ -500,12 +500,12 @@ QVariant UBDocumentTreeModel::data(const QModelIndex &index, int role) const ...@@ -500,12 +500,12 @@ QVariant UBDocumentTreeModel::data(const QModelIndex &index, int role) const
} else if (isConstant(index)) { } else if (isConstant(index)) {
return QIcon(":images/libpalette/ApplicationsCategory.svg"); return QIcon(":images/libpalette/ApplicationsCategory.svg");
} }
switch (static_cast<int>(dataNode->nodeType())) { // switch (static_cast<int>(dataNode->nodeType())) {
case UBDocumentTreeNode::Catalog : // case UBDocumentTreeNode::Catalog :
return QIcon(":images/folder.png"); // return QIcon(":images/folder.png");
case UBDocumentTreeNode::Document : // case UBDocumentTreeNode::Document :
return QIcon(":images/toolbar/board.png"); // return QIcon(":images/toolbar/board.png");
} // }
} }
break; break;
case (Qt::FontRole) : 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