summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2017-12-24 09:39:12 (GMT)
committerGitHub <noreply@github.com>2017-12-24 09:39:12 (GMT)
commitdc11a3f6a207b3539ffe55a20164d4a90961ff30 (patch)
treeca8ddabc1c77ce6d40ccb997d0d53334b8926acd
parent2025c3b1521222ab6df2beb10dc962ba89930aca (diff)
parentd6e9db71645d895450993972ed41406c1cf1fc52 (diff)
downloadDoxygen-dc11a3f6a207b3539ffe55a20164d4a90961ff30.zip
Doxygen-dc11a3f6a207b3539ffe55a20164d4a90961ff30.tar.gz
Doxygen-dc11a3f6a207b3539ffe55a20164d4a90961ff30.tar.bz2
Merge pull request #630 from faheel/change-right-arrow
Changed the navtree collapsed list icon to be more symmetric to the expanded list icon
-rw-r--r--README.md2
-rw-r--r--src/ftvhelp.cpp2
-rw-r--r--templates/html/dynsections.js6
-rw-r--r--templates/html/htmldirtree.tpl2
-rw-r--r--templates/html/navtree.js2
5 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index f0a8c0c..49dcac9 100644
--- a/README.md
+++ b/README.md
@@ -64,7 +64,7 @@ There are three mailing lists:
Source Code
----------------------------------
In May 2013, Doxygen moved from
-subversion to git hosted at github
+subversion to git hosted at GitHub
* https://github.com/doxygen/doxygen
Enjoy,
diff --git a/src/ftvhelp.cpp b/src/ftvhelp.cpp
index 82c2433..b04da62 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;" : "&#9658;";
+ QCString dir = opened ? "&#9660;" : "&#9654;";
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) << "')\"";
diff --git a/templates/html/dynsections.js b/templates/html/dynsections.js
index ea0a7b3..c1ce122 100644
--- a/templates/html/dynsections.js
+++ b/templates/html/dynsections.js
@@ -60,7 +60,7 @@ function toggleLevel(level)
$(this).show();
} else if (l==level+1) {
i.removeClass('iconfclosed iconfopen').addClass('iconfclosed');
- a.html('&#9658;');
+ a.html('&#9654;');
$(this).show();
} else {
$(this).hide();
@@ -87,7 +87,7 @@ function toggleFolder(id)
// replace down arrow by right arrow for current row
var currentRowSpans = currentRow.find("span");
currentRowSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed");
- currentRowSpans.filter(".arrow").html('&#9658;');
+ currentRowSpans.filter(".arrow").html('&#9654;');
rows.filter("[id^=row_"+id+"]").hide(); // hide all children
} else { // we are SHOWING
// replace right arrow by down arrow for current row
@@ -97,7 +97,7 @@ function toggleFolder(id)
// replace down arrows by right arrows for child rows
var childRowsSpans = childRows.find("span");
childRowsSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed");
- childRowsSpans.filter(".arrow").html('&#9658;');
+ childRowsSpans.filter(".arrow").html('&#9654;');
childRows.show(); //show all children
}
updateStripes();
diff --git a/templates/html/htmldirtree.tpl b/templates/html/htmldirtree.tpl
index a6b9b21..6d3ef8c 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 %}&#9658;{% endif %}
+ {%if node.level+1<tree.preferredDepth %}&#9660;{% else %}&#9654;{% endif %}
</span>
{% endif %}
{% if node.namespace %}
diff --git a/templates/html/navtree.js b/templates/html/navtree.js
index 7ce2935..e310bc9 100644
--- a/templates/html/navtree.js
+++ b/templates/html/navtree.js
@@ -23,7 +23,7 @@
*/
var navTreeSubIndices = new Array();
var arrowDown = '&#9660;';
-var arrowRight = '&#9658;';
+var arrowRight = '&#9654;';
function getData(varName)
{