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 /archivemodel.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 'archivemodel.cpp')
-rw-r--r-- | archivemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archivemodel.cpp b/archivemodel.cpp index b4a1e2b..0f266ca 100644 --- a/archivemodel.cpp +++ b/archivemodel.cpp @@ -827,7 +827,7 @@ QVariant ArchiveFilesModel::data(const QModelIndex &index, int role) const { case Md5Sum: case FullPath: case SizeDur: - return QFont("courier new"); + return QFont("Monospace"); } } if(role == Qt::DecorationRole){ |