Remove colors -> completion.item.bg config option.
This wasn't used anywhere...
This commit is contained in:
parent
2dcf323077
commit
2b10adfad7
@ -166,7 +166,6 @@
|
|||||||
|<<colors-completion.fg,completion.fg>>|Text color of the completion widget.
|
|<<colors-completion.fg,completion.fg>>|Text color of the completion widget.
|
||||||
|<<colors-completion.bg,completion.bg>>|Background color of the completion widget.
|
|<<colors-completion.bg,completion.bg>>|Background color of the completion widget.
|
||||||
|<<colors-completion.alternate-bg,completion.alternate-bg>>|Alternating background color of the completion widget.
|
|<<colors-completion.alternate-bg,completion.alternate-bg>>|Alternating background color of the completion widget.
|
||||||
|<<colors-completion.item.bg,completion.item.bg>>|Background color of completion widget items.
|
|
||||||
|<<colors-completion.category.fg,completion.category.fg>>|Foreground color of completion widget category headers.
|
|<<colors-completion.category.fg,completion.category.fg>>|Foreground color of completion widget category headers.
|
||||||
|<<colors-completion.category.bg,completion.category.bg>>|Background color of the completion widget category headers.
|
|<<colors-completion.category.bg,completion.category.bg>>|Background color of the completion widget category headers.
|
||||||
|<<colors-completion.category.border.top,completion.category.border.top>>|Top border color of the completion widget category headers.
|
|<<colors-completion.category.border.top,completion.category.border.top>>|Top border color of the completion widget category headers.
|
||||||
@ -1341,12 +1340,6 @@ Alternating background color of the completion widget.
|
|||||||
|
|
||||||
Default: +pass:[#444444]+
|
Default: +pass:[#444444]+
|
||||||
|
|
||||||
[[colors-completion.item.bg]]
|
|
||||||
=== completion.item.bg
|
|
||||||
Background color of completion widget items.
|
|
||||||
|
|
||||||
Default: +pass:[${completion.bg}]+
|
|
||||||
|
|
||||||
[[colors-completion.category.fg]]
|
[[colors-completion.category.fg]]
|
||||||
=== completion.category.fg
|
=== completion.category.fg
|
||||||
Foreground color of completion widget category headers.
|
Foreground color of completion widget category headers.
|
||||||
|
@ -264,6 +264,7 @@ class ConfigManager(QObject):
|
|||||||
DELETED_OPTIONS = [
|
DELETED_OPTIONS = [
|
||||||
('colors', 'tab.seperator'),
|
('colors', 'tab.seperator'),
|
||||||
('colors', 'tabs.seperator'),
|
('colors', 'tabs.seperator'),
|
||||||
|
('colors', 'completion.item.bg'),
|
||||||
]
|
]
|
||||||
|
|
||||||
changed = pyqtSignal(str, str)
|
changed = pyqtSignal(str, str)
|
||||||
|
@ -683,10 +683,6 @@ DATA = collections.OrderedDict([
|
|||||||
SettingValue(typ.QssColor(), '#444444'),
|
SettingValue(typ.QssColor(), '#444444'),
|
||||||
"Alternating background color of the completion widget."),
|
"Alternating background color of the completion widget."),
|
||||||
|
|
||||||
('completion.item.bg',
|
|
||||||
SettingValue(typ.QssColor(), '${completion.bg}'),
|
|
||||||
"Background color of completion widget items."),
|
|
||||||
|
|
||||||
('completion.category.fg',
|
('completion.category.fg',
|
||||||
SettingValue(typ.QtColor(), 'white'),
|
SettingValue(typ.QtColor(), 'white'),
|
||||||
"Foreground color of completion widget category headers."),
|
"Foreground color of completion widget category headers."),
|
||||||
|
Loading…
Reference in New Issue
Block a user