1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-26 02:46:13 -04:00

Keep forms in bold even when active.

This commit is contained in:
Yozo Hida 2009-05-01 15:39:30 -04:00 committed by أحمد المحمودي (Ahmed El-Mahmoudy)
parent d8e749c0f4
commit 6ad3e541c8

View File

@ -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) {