From 8fb1a887db9c922ac6d4950d7a6fcdc0673ab844 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 9 Jan 2015 14:19:04 +0100 Subject: [PATCH] Remove old colors->tabs.separator option. --- doc/help/settings.asciidoc | 7 ------- qutebrowser/config/configdata.py | 4 ---- 2 files changed, 11 deletions(-) diff --git a/doc/help/settings.asciidoc b/doc/help/settings.asciidoc index aea88a6e1..437892a62 100644 --- a/doc/help/settings.asciidoc +++ b/doc/help/settings.asciidoc @@ -178,7 +178,6 @@ |<>|Color gradient end for the tab indicator. |<>|Color for the tab indicator on errors.. |<>|Color gradient interpolation system for the tab indicator. -|<>|Color for the tab seperator. |<>|Font color for hints. |<>|Font color for the matched part of hints. |<>|Background color for hints. @@ -1328,12 +1327,6 @@ Valid values: Default: +pass:[rgb]+ -[[colors-tabs.seperator]] -=== tabs.seperator -Color for the tab seperator. - -Default: +pass:[#555555]+ - [[colors-hints.fg]] === hints.fg Font color for hints. diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 5d5305091..723a1c9ad 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -720,10 +720,6 @@ DATA = collections.OrderedDict([ SettingValue(typ.ColorSystem(), 'rgb'), "Color gradient interpolation system for the tab indicator."), - ('tabs.seperator', - SettingValue(typ.QssColor(), '#555555'), - "Color for the tab seperator."), - ('hints.fg', SettingValue(typ.CssColor(), 'black'), "Font color for hints."),