diff options
author | albert-github <albert.tests@gmail.com> | 2018-06-04 18:25:30 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2018-06-04 18:25:30 (GMT) |
commit | 293e5c9ba4b88924e0cc4b513318cf822f5c63eb (patch) | |
tree | 7839968b05e2af27e6aca2f1577c23816607ee3f /src/ftvhelp.cpp | |
parent | 9117548f0ce573b586928a740966844776c4c6ba (diff) | |
download | Doxygen-293e5c9ba4b88924e0cc4b513318cf822f5c63eb.zip Doxygen-293e5c9ba4b88924e0cc4b513318cf822f5c63eb.tar.gz Doxygen-293e5c9ba4b88924e0cc4b513318cf822f5c63eb.tar.bz2 |
Bug 796494 - Collapsed treeview arrow displays as emoji in Microsoft Edge
The right arrow (▶) 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 (␪) 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:
- ▼ 'BLACK DOWN-POINTING TRIANGLE'
- for the right arrow we have:
- ▶ 'BLACK RIGHT-POINTING TRIANGLE'
- ► '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.cpp | 2 |
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 ? "▼" : "▶"; + QCString dir = opened ? "▼" : "►"; t << "<span style=\"width:" << (indent*16) << "px;display:inline-block;\"> </span>" << "<span id=\"arr_" << generateIndentLabel(n,0) << "\" class=\"arrow\" "; t << "onclick=\"toggleFolder('" << generateIndentLabel(n,0) << "')\""; |