WebView: omit lists inside <nav> tag for better readability

git-svn-id: svn://kolibrios.org@9302 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
2021-11-22 18:30:51 +00:00
parent 0726cf15e7
commit ba3c6816a1
3 changed files with 8 additions and 4 deletions

View File

@@ -19,7 +19,8 @@ struct STYLE {
pre,
blq,
button,
image;
image,
nav, header;
LIST tag_list;
dword title;
dword cur_line_h;
@@ -28,8 +29,8 @@ struct STYLE {
void STYLE::reset()
{
b = u = s = h = blq = pre = title = false;
font = false;
b = u = s = h = font = pre = blq =
title = button = image = nav = header = false;
cur_line_h = NULL;
tag_list.reset();
}