summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2016-01-22 12:09:54 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2016-01-22 12:09:54 +0000
commit4623f15a5a64425f2dc1883248b885c9ec8ff51b (patch)
tree999f662e45f476fdf728271c151f732926eb9c12
parent219cb277a629942642840dc53ca5bc9dae1ff60d (diff)
IEView: font size fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@16141 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--plugins/IEView/src/TextToken.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/IEView/src/TextToken.cpp b/plugins/IEView/src/TextToken.cpp
index 6934043d22..ab3441f5b6 100644
--- a/plugins/IEView/src/TextToken.cpp
+++ b/plugins/IEView/src/TextToken.cpp
@@ -634,7 +634,7 @@ void TextToken::toString(CMStringW &str)
break;
case BB_SIZE:
eText = htmlEncode(wtext);
- str.AppendFormat(L"<span style=\"font-size: %s;\">", eText);
+ str.AppendFormat(L"<span style=\"font-size: %spt;\">", eText);
break;
}
}