mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
Use color.background instead of bgcolor in struct document too.
Not useful but coherent with other changes.
This commit is contained in:
parent
bc498c00da
commit
f150f22ac9
@ -208,7 +208,10 @@ struct document {
|
||||
int width, height; /**< size of document */
|
||||
int nlinks;
|
||||
int nsearch;
|
||||
color_T bgcolor;
|
||||
|
||||
struct {
|
||||
color_T background;
|
||||
} color;
|
||||
|
||||
enum cp_status cp_status;
|
||||
unsigned int links_sorted:1; /**< whether links are already sorted */
|
||||
|
@ -99,7 +99,7 @@ render_dom_document(struct cache_entry *cached, struct document *document,
|
||||
|
||||
init_dom_renderer(&renderer, document, buffer, convert_table);
|
||||
|
||||
document->bgcolor = document->options.default_style.color.background;
|
||||
document->color.background = document->options.default_style.color.background;
|
||||
#ifdef CONFIG_UTF8
|
||||
document->options.utf8 = is_cp_utf8(document->options.cp);
|
||||
#endif /* CONFIG_UTF8 */
|
||||
|
@ -2278,7 +2278,7 @@ render_html_document(struct cache_entry *cached, struct document *document,
|
||||
>= document->options.width));
|
||||
#endif
|
||||
|
||||
document->bgcolor = par_format.bgcolor;
|
||||
document->color.background = par_format.bgcolor;
|
||||
|
||||
done_html_parser(html_context);
|
||||
|
||||
|
@ -637,7 +637,7 @@ render_plain_document(struct cache_entry *cached, struct document *document,
|
||||
renderer.max_width = document->options.wrap ? document->options.box.width
|
||||
: INT_MAX;
|
||||
|
||||
document->bgcolor = document->options.default_style.color.background;
|
||||
document->color.background = document->options.default_style.color.background;
|
||||
document->width = 0;
|
||||
#ifdef CONFIG_UTF8
|
||||
document->options.utf8 = is_cp_utf8(document->options.cp);
|
||||
|
@ -229,7 +229,7 @@ draw_doc(struct session *ses, struct document_view *doc_view, int active)
|
||||
|
||||
color.foreground = get_opt_color("document.colors.text", ses);
|
||||
color.background = doc_view->document->height
|
||||
? doc_view->document->bgcolor
|
||||
? doc_view->document->color.background
|
||||
: get_opt_color("document.colors.background", ses);
|
||||
|
||||
vs = doc_view->vs;
|
||||
|
Loading…
Reference in New Issue
Block a user