diff options
author | Arno <am@disconnect.de> | 2013-10-12 05:30:18 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-10-12 05:30:18 +0200 |
commit | 990218c07e2052f7e75af42a965cfc84b36e8371 (patch) | |
tree | 70a34d61e4cf2290565fa5cb02395a568e814162 /filesystemfileproxy.cpp | |
parent | 697541ea2c50ba97fc4b4e31e9e7c4d82be51899 (diff) | |
download | SheMov-990218c07e2052f7e75af42a965cfc84b36e8371.tar.gz SheMov-990218c07e2052f7e75af42a965cfc84b36e8371.tar.bz2 SheMov-990218c07e2052f7e75af42a965cfc84b36e8371.zip |
Fix Style issues
* Change fixed width front from "courier" to "Monospace"
* Remove foregroundcolor from SmTreeItem. Wasn't used nor needed, quite
the opposite: it made SheMov deviate from the default style.
Diffstat (limited to 'filesystemfileproxy.cpp')
-rw-r--r-- | filesystemfileproxy.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/filesystemfileproxy.cpp b/filesystemfileproxy.cpp index 1267560..524456c 100644 --- a/filesystemfileproxy.cpp +++ b/filesystemfileproxy.cpp @@ -50,7 +50,8 @@ QVariant FilesystemFileProxy::data(const QModelIndex &index, int role) const{ } if(role == Qt::FontRole){ if(index.column() == SmDirModel::Md5sum || index.column() == SmDirModel::DurSize || index.column() == SmDirModel::Bitrate){ - return QFont("courier"); + + return QFont("Monospace"); } } return QSortFilterProxyModel::data(index, role); |