summaryrefslogtreecommitdiffstats
path: root/templates/html/htmldirtree.tpl
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 /templates/html/htmldirtree.tpl
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 'templates/html/htmldirtree.tpl')
-rw-r--r--templates/html/htmldirtree.tpl2
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;">&#160;</span>
<span id="arr_{{ node.id }}" class="arrow" onclick="toggleFolder('{{ node.id}}')">
- {%if node.level+1<tree.preferredDepth %}&#9660;{% else %}&#9654;{% endif %}
+ {%if node.level+1<tree.preferredDepth %}&#9660;{% else %}&#9658;{% endif %}
</span>
{% endif %}
{% if node.namespace %}