Merge remote-tracking branch 'origin/pr/3165'

This commit is contained in:
Florian Bruhin 2017-10-20 09:14:41 +02:00
commit 128a16173e
2 changed files with 9 additions and 2 deletions

View File

@ -978,6 +978,13 @@ keyhint.blacklist:
Globs are supported, so `;*` will blacklist all keychains starting with `;`.
Use `*` to disable keyhints.
keyhint.radius:
type:
name: Int
minval: 0
default: 6
desc: The rounding radius for the edges of the keyhint dialog.
# emacs: '
keyhint.delay:

View File

@ -54,9 +54,9 @@ class KeyHintView(QLabel):
background-color: {{ conf.colors.keyhint.bg }};
padding: 6px;
{% if conf.statusbar.position == 'top' %}
border-bottom-right-radius: 6px;
border-bottom-right-radius: {{ conf.keyhint.radius }}px;
{% else %}
border-top-right-radius: 6px;
border-top-right-radius: {{ conf.keyhint.radius }}px;
{% endif %}
}
"""