summaryrefslogtreecommitdiffstats
path: root/src/ftvhelp.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-06-04 18:25:30 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-06-04 18:25:30 (GMT)
commit293e5c9ba4b88924e0cc4b513318cf822f5c63eb (patch)
tree7839968b05e2af27e6aca2f1577c23816607ee3f /src/ftvhelp.cpp
parent9117548f0ce573b586928a740966844776c4c6ba (diff)
downloadDoxygen-293e5c9ba4b88924e0cc4b513318cf822f5c63eb.zip
Doxygen-293e5c9ba4b88924e0cc4b513318cf822f5c63eb.tar.gz
Doxygen-293e5c9ba4b88924e0cc4b513318cf822f5c63eb.tar.bz2
Bug 796494 - Collapsed treeview arrow displays as emoji in Microsoft Edge
The right arrow (&#9654;) is inn MicrosoftEdge displayed as an Emoji it displays as a white arrow inside a blue square with a black border instead of a monochrome arrow. Unicode contains another right arrow (&#9258) which displays correctly (also in Chrome, Opera, FireFox, Internet Explorer; in some even better). The Unicode naming is a bit confusing: - for the down arrow we only have: - &#9660; 'BLACK DOWN-POINTING TRIANGLE' - for the right arrow we have: - &#9654; 'BLACK RIGHT-POINTING TRIANGLE' - &#9658; 'BLACK RIGHT-POINTING POINTER' so it looks logical to use both Triangles but this is not the case.
Diffstat (limited to 'src/ftvhelp.cpp')
-rw-r--r--src/ftvhelp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ftvhelp.cpp b/src/ftvhelp.cpp
index 14c94a3..d71c48f 100644
--- a/src/ftvhelp.cpp
+++ b/src/ftvhelp.cpp
@@ -257,7 +257,7 @@ void FTVHelp::generateIndent(FTextStream &t, FTVNode *n,bool opened)
while (p) { indent++; p=p->parent; }
if (n->isDir)
{
- QCString dir = opened ? "&#9660;" : "&#9654;";
+ QCString dir = opened ? "&#9660;" : "&#9658;";
t << "<span style=\"width:" << (indent*16) << "px;display:inline-block;\">&#160;</span>"
<< "<span id=\"arr_" << generateIndentLabel(n,0) << "\" class=\"arrow\" ";
t << "onclick=\"toggleFolder('" << generateIndentLabel(n,0) << "')\"";