Merge remote-tracking branch 'origin/pr/3165'
This commit is contained in:
commit
128a16173e
@ -978,6 +978,13 @@ keyhint.blacklist:
|
|||||||
Globs are supported, so `;*` will blacklist all keychains starting with `;`.
|
Globs are supported, so `;*` will blacklist all keychains starting with `;`.
|
||||||
Use `*` to disable keyhints.
|
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: '
|
# emacs: '
|
||||||
|
|
||||||
keyhint.delay:
|
keyhint.delay:
|
||||||
|
@ -54,9 +54,9 @@ class KeyHintView(QLabel):
|
|||||||
background-color: {{ conf.colors.keyhint.bg }};
|
background-color: {{ conf.colors.keyhint.bg }};
|
||||||
padding: 6px;
|
padding: 6px;
|
||||||
{% if conf.statusbar.position == 'top' %}
|
{% if conf.statusbar.position == 'top' %}
|
||||||
border-bottom-right-radius: 6px;
|
border-bottom-right-radius: {{ conf.keyhint.radius }}px;
|
||||||
{% else %}
|
{% else %}
|
||||||
border-top-right-radius: 6px;
|
border-top-right-radius: {{ conf.keyhint.radius }}px;
|
||||||
{% endif %}
|
{% endif %}
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user