Merge branch 'error800-master'

This commit is contained in:
Florian Bruhin 2015-01-05 18:39:35 +01:00
commit 7bf0013e60
2 changed files with 3 additions and 2 deletions

View File

@ -139,6 +139,7 @@ Contributors, sorted by the number of commits in descending order:
* Matthias Lisin
* Helen Sherwood-Taylor
* HalosGhost
* Error 800
// QUTE_AUTHORS_END
The following people have contributed graphics:

View File

@ -289,9 +289,9 @@ class HintManager(QObject):
# Make text uppercase if set in config
if (config.get('hints', 'uppercase') and
config.get('hints', 'mode') == 'letter'):
attrs.append(('texttransform', 'uppercase'))
attrs.append(('text-transform', 'uppercase'))
else:
attrs.append(('texttransform', 'none'))
attrs.append(('text-transform', 'none'))
for k, v in attrs:
label.setStyleProperty(k, v)