summaryrefslogtreecommitdiff
path: root/src/prefs.c
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2009-03-06 09:31:29 +0100
committercorvid <corvid@lavabit.com>2009-03-06 09:31:29 +0100
commit9514cc5f1a0bc7e8ba63791edd62d2d9e69821f8 (patch)
treea0b5673a28fcf19597c889240c62c530bd5d6adf /src/prefs.c
parentaa70b2f628549b2426693572baf96fc71341c404 (diff)
remove standard_widget_colors dillorc option
Form widgets by default use the background color of their parent. To get more conservative widget colors, you can add a line button, select, input {background-color: #e0e0e0} to ~/.dillo/style.css.
Diffstat (limited to 'src/prefs.c')
-rw-r--r--src/prefs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/prefs.c b/src/prefs.c
index b9680819..815262c0 100644
--- a/src/prefs.c
+++ b/src/prefs.c
@@ -204,7 +204,6 @@ static int Prefs_parse_dillorc(void)
{ "show_tooltip", &prefs.show_tooltip, PREFS_BOOL },
{ "show_url", &prefs.show_url, PREFS_BOOL },
{ "small_icons", &prefs.small_icons, PREFS_BOOL },
- { "standard_widget_colors", &prefs.standard_widget_colors, PREFS_BOOL },
{ "start_page", &prefs.start_page, PREFS_URL },
{ "text_color", &prefs.text_color, PREFS_COLOR },
{ "visited_color", &prefs.visited_color, PREFS_COLOR },
@@ -316,7 +315,6 @@ void a_Prefs_init(void)
prefs.show_tooltip = TRUE;
prefs.show_url=TRUE;
prefs.small_icons = FALSE;
- prefs.standard_widget_colors = FALSE;
prefs.start_page = a_Url_new(DILLO_START_PAGE, NULL);
prefs.text_color = DW_COLOR_DEFAULT_TEXT;
prefs.visited_color = DW_COLOR_DEFAULT_VLINK;