Skip to content

Commit d1bb0de

Browse files
committed
Regression for doxygen#12093: navigation panel for user manual no longer visible
1 parent 1bbdd68 commit d1bb0de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ftvhelp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ static bool dupOfParent(const FTVNodePtr &n)
556556
static void generateJSLink(TextStream &t,const FTVNodePtr &n)
557557
{
558558
bool nameAsHtml = !n->nameAsHtml.isEmpty();
559-
QCString link = nameAsHtml ? n->nameAsHtml : convertToJSString(n->name);
559+
QCString link = nameAsHtml ? convertToJSString(n->nameAsHtml,true) : convertToJSString(n->name);
560560
if (n->file.isEmpty()) // no link
561561
{
562562
t << "\"" << link << "\", null, ";

0 commit comments

Comments
 (0)