Fix uppercase hint formatting.

This commit is contained in:
Florian Bruhin 2014-10-26 17:05:56 +01:00
parent ef9e31c2d9
commit 2d9425a0b7

View File

@ -274,7 +274,8 @@ class HintManager(QObject):
display = 'none' display = 'none'
# Make text uppercase if set in config # Make text uppercase if set in config
if config.get("hints","uppercase") and config.get("hints","mode") == "letter": if (config.get('hints', 'uppercase') and
config.get('hints', 'mode') == 'letter'):
texttransform = 'uppercase' texttransform = 'uppercase'
else: else:
texttransform = 'none' texttransform = 'none'