diff options
author | Faheel Ahmad <faheel@live.in> | 2017-12-07 09:44:03 (GMT) |
---|---|---|
committer | Faheel Ahmad <faheel@live.in> | 2017-12-07 10:11:03 (GMT) |
commit | b3869a3ed82957c1785dc955876885f8b73a020b (patch) | |
tree | a4a25fa0d397a958bdc45c8d97d4543c142b60a2 | |
parent | 4f45bd20d4da7d40c793ec4c4c13558581e995ac (diff) | |
download | Doxygen-b3869a3ed82957c1785dc955876885f8b73a020b.zip Doxygen-b3869a3ed82957c1785dc955876885f8b73a020b.tar.gz Doxygen-b3869a3ed82957c1785dc955876885f8b73a020b.tar.bz2 |
Change navtree collapsed list icon
-rw-r--r-- | src/ftvhelp.cpp | 2 | ||||
-rw-r--r-- | templates/html/dynsections.js | 6 | ||||
-rw-r--r-- | templates/html/htmldirtree.tpl | 2 | ||||
-rw-r--r-- | templates/html/navtree.js | 2 |
4 files changed, 6 insertions, 6 deletions
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 ? "▼" : "►"; + 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) << "')\""; 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('►'); + a.html('▶'); $(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('►'); + currentRowSpans.filter(".arrow").html('▶'); 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('►'); + childRowsSpans.filter(".arrow").html('▶'); 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;"> </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 %} 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 = '▼'; -var arrowRight = '►'; +var arrowRight = '▶'; function getData(varName) { |