diff options
author | portix <portix@gmx.net> | 2012-02-29 17:03:21 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2012-02-29 17:03:21 +0100 |
commit | be7e89e4b9870924114c90885e9225466fa485c8 (patch) | |
tree | f168991d32a6b6b5b503dffba0356a8805933fc8 | |
parent | 3fd39f3f891953ade2e5a0e5c03e1c9b2d4d2616 (diff) | |
download | dwb-be7e89e4b9870924114c90885e9225466fa485c8.zip |
Rename setting font-inactive -> font-nofocus
-rw-r--r-- | doc/dwb.1 | 4 | ||||
-rw-r--r-- | src/config.h | 4 | ||||
-rw-r--r-- | src/dwb.c | 2 | ||||
-rw-r--r-- | util/settings.in | 1 |
4 files changed, 5 insertions, 6 deletions
@@ -1623,8 +1623,8 @@ The font used for the address bar. Possible values: a font description string, default value: .TP -.BR font-inactive -The font used for inactive tabs. Possible values: a font description +.BR font-nofocus +The font used for tablabels without focus and completion items without focus. Possible values: a font description string, default value: .TP diff --git a/src/config.h b/src/config.h index 22dac321..a0685766 100644 --- a/src/config.h +++ b/src/config.h @@ -948,12 +948,12 @@ static WebSettings DWB_SETTINGS[] = { { { "font", "Default font used for the ui", }, SETTING_GLOBAL, CHAR, { .p = "monospace 8" }, (S_Func) dwb_reload_layout, }, - { { "font-inactive", "Font of views without focus", }, - SETTING_GLOBAL, CHAR, { .p = NULL }, (S_Func) dwb_reload_layout, }, { { "font-entry", "Font of the addressbar", }, SETTING_GLOBAL, CHAR, { .p = NULL }, (S_Func) dwb_reload_layout, }, { { "font-completion", "Font for tab-completion", }, SETTING_GLOBAL, CHAR, { .p = NULL }, (S_Func) dwb_reload_layout, }, + { { "font-nofocus", "Font of tabs/completion items without focus", }, + SETTING_GLOBAL, CHAR, { .p = NULL }, (S_Func) dwb_reload_layout, }, { { "hint-letter-seq", "Letter sequence for letter hints", }, SETTING_PER_VIEW, CHAR, { .p = "FDSARTGBVECWXQYIOPMNHZULKJ" }, (S_Func) dwb_reload_scripts, }, @@ -3049,7 +3049,7 @@ dwb_init_style() { var = dwb.font.fd_active; \ } while(0) - SET_FONT(dwb.font.fd_inactive, "font-inactive"); + SET_FONT(dwb.font.fd_inactive, "font-nofocus"); SET_FONT(dwb.font.fd_entry, "font-entry"); SET_FONT(dwb.font.fd_completion, "font-completion"); #undef SET_FONT diff --git a/util/settings.in b/util/settings.in index 7ef65150..5b413843 100644 --- a/util/settings.in +++ b/util/settings.in @@ -34,7 +34,6 @@ fantasy-font-family text Fantasy font family used to display text font text Default font used for the ui font-completion text Font for tab-completion font-entry text Font for the addressbar -font-inactive text Font for views without focus minimum-font-size text Minimum font size used to display text minimum-logical-font-size text Minimum logical font size used to display text monospace-font-family text Monospace font family used to display text |