parent
021b3645cc
commit
cc2b085443
@ -43,6 +43,7 @@ Fixed
|
||||
- Fixed PAC (proxy autoconfig) not working with QtWebKit
|
||||
- `:download --mhtml` now uses the new file dialog
|
||||
- Insert mode now gets entered correctly with a non-100% zoom
|
||||
- Word hints are now upper-cased correctly when hints -> uppercase is true
|
||||
|
||||
v0.9.1
|
||||
------
|
||||
|
@ -101,7 +101,7 @@ class HintLabel(QLabel):
|
||||
unmatched: The part of the text which was not typed yet.
|
||||
"""
|
||||
if (config.get('hints', 'uppercase') and
|
||||
self._context.hint_mode == 'letter'):
|
||||
self._context.hint_mode in ['letter', 'word']):
|
||||
matched = html.escape(matched.upper())
|
||||
unmatched = html.escape(unmatched.upper())
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user