mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Keep forms in bold even when active.
This commit is contained in:
parent
d8e749c0f4
commit
6ad3e541c8
@ -184,7 +184,8 @@ init_link_drawing(struct document_view *doc_view, struct link *link, int invert)
|
||||
if (doc_opts->active_link.underline)
|
||||
template_.attr |= SCREEN_ATTR_UNDERLINE;
|
||||
|
||||
if (doc_opts->active_link.bold)
|
||||
/* keep forms in bold */
|
||||
if (doc_opts->active_link.bold || link->type != LINK_HYPERTEXT)
|
||||
template_.attr |= SCREEN_ATTR_BOLD;
|
||||
|
||||
if (doc_opts->active_link.enable_color) {
|
||||
|
Loading…
Reference in New Issue
Block a user