diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-03-06 11:59:18 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-03-06 11:59:18 +0100 |
commit | 404b32a8f5dc7b2a296f3a9b99081e1db9b99b84 (patch) | |
tree | 74af469b40e789adfdb6ca53095dc86505f5c874 /src/prefs.c | |
parent | e151a3613a78862486f239dd7268a4811a83a799 (diff) |
remove text_color dillorc option
To change the default text color add a line like
body {color: yellow}
to your ~/.dillo/style.css file.
Diffstat (limited to 'src/prefs.c')
-rw-r--r-- | src/prefs.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/prefs.c b/src/prefs.c index e0b746ae..d8d68fca 100644 --- a/src/prefs.c +++ b/src/prefs.c @@ -43,7 +43,6 @@ #define D_SEARCH_URL "http://www.google.com/search?ie=UTF-8&oe=UTF-8&q=%s" #define D_SAVE_DIR "/tmp/" -#define DW_COLOR_DEFAULT_TEXT 0x000000 #define DW_COLOR_DEFAULT_LINK 0x0000ff #define DW_COLOR_DEFAULT_VLINK 0x800080 @@ -203,7 +202,6 @@ static int Prefs_parse_dillorc(void) { "show_url", &prefs.show_url, PREFS_BOOL }, { "small_icons", &prefs.small_icons, PREFS_BOOL }, { "start_page", &prefs.start_page, PREFS_URL }, - { "text_color", &prefs.text_color, PREFS_COLOR }, { "visited_color", &prefs.visited_color, PREFS_COLOR }, { "w3c_plus_heuristics", &prefs.w3c_plus_heuristics, PREFS_BOOL } }; @@ -313,7 +311,6 @@ void a_Prefs_init(void) prefs.show_url=TRUE; prefs.small_icons = 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; prefs.w3c_plus_heuristics = TRUE; |