Set a higher z-index for hint labels.
This fixes hinting on the youtube top bar. Fixes #496.
This commit is contained in:
parent
59a11c178f
commit
18b58b2001
@ -284,7 +284,7 @@ class HintManager(QObject):
|
||||
"""
|
||||
attrs = [
|
||||
('display', 'inline !important'),
|
||||
('z-index', '100000 !important'),
|
||||
('z-index', '{} !important'.format(int(2 ** 32 / 2 - 1))),
|
||||
('pointer-events', 'none !important'),
|
||||
('position', 'absolute !important'),
|
||||
('color', config.get('colors', 'hints.fg') + ' !important'),
|
||||
|
Loading…
Reference in New Issue
Block a user