Fix un-hiding of hints.

This commit is contained in:
Florian Bruhin 2014-12-10 23:22:25 +01:00
parent b00e00db37
commit d0b5f2087a

View File

@ -701,7 +701,7 @@ class HintManager(QObject):
str(elems.elem).lower().startswith(filterstr)):
if self._is_hidden(elems.label):
# hidden element which matches again -> unhide it
elems.label.setStyleProperty('display', 'none')
elems.label.setStyleProperty('display', 'inline')
else:
# element doesn't match anymore -> hide it
elems.label.setStyleProperty('display', 'none')