diff options
Diffstat (limited to 'src/html.cc')
-rw-r--r-- | src/html.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html.cc b/src/html.cc index 4cecea48..40ef31c6 100644 --- a/src/html.cc +++ b/src/html.cc @@ -119,8 +119,8 @@ static void Html_tag_cleanup_at_close(DilloHtml *html, int TagIdx); /*----------------------------------------------------------------------------- * Local Data *---------------------------------------------------------------------------*/ -/* The following array of font sizes has to be _strictly_ crescent */ -static const int FontSizes[] = {8, 10, 12, 14, 18, 24}; +/* The following array of font sizes has to be _strictly_ increasing */ +static const int FontSizes[] = {10, 12, 14, 18, 22, 28}; static const int FontSizesNum = 6; static const int FontSizesBase = 2; |