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 /templates/html/htmldirtree.tpl | |
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 'templates/html/htmldirtree.tpl')
-rw-r--r-- | templates/html/htmldirtree.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/html/htmldirtree.tpl b/templates/html/htmldirtree.tpl index 6d3ef8c..a6b9b21 100644 --- a/templates/html/htmldirtree.tpl +++ b/templates/html/htmldirtree.tpl @@ -20,7 +20,7 @@ {% else %} <span style="width:{{ (node.level)*16 }}px;display:inline-block;"> </span> <span id="arr_{{ node.id }}" class="arrow" onclick="toggleFolder('{{ node.id}}')"> - {%if node.level+1<tree.preferredDepth %}▼{% else %}▶{% endif %} + {%if node.level+1<tree.preferredDepth %}▼{% else %}►{% endif %} </span> {% endif %} {% if node.namespace %} |