summaryrefslogtreecommitdiff
path: root/src/html.cc
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-09-08 16:50:15 +0200
committerjcid <devnull@localhost>2008-09-08 16:50:15 +0200
commit9d0c154884a9b10c2e45f269be0bb686da1c98c9 (patch)
treeb5fd5bd56273427f5f1cbf9fe7c4b10d004ffe72 /src/html.cc
parent994af550781a1756b1bee6225c01ff0f12219d14 (diff)
- Adjusted internal font sizes so the default font_factor is 1.0
Diffstat (limited to 'src/html.cc')
-rw-r--r--src/html.cc4
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;