Removed vertical headers from plugin view

This commit is contained in:
graffy76 2013-08-16 18:59:01 -05:00
parent 49c4e1bf9e
commit b850fe0289
3 changed files with 8 additions and 6 deletions

View file

@ -11,7 +11,7 @@ PluginsProxyModel::~PluginsProxyModel()
QVariant PluginsProxyModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (orientation != Qt::Vertical || role != Qt::DisplayRole)
//if (orientation != Qt::Vertical || role != Qt::DisplayRole)
return QSortFilterProxyModel::headerData(section, orientation, role);
return section + 1;
// return section + 1;
}