Skip to content

Commit b6f4c32

Browse files
committed
Add tooltip to group names
In the left side panel of the doxywizard the groups are named with their "mnemonics", a bit larger description is shown in the right side panel, but these names ar not always visible. Adding a tooltip to the items in the left side panel overcomes this deficiency.
1 parent 11e4cfb commit b6f4c32

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

addon/doxywizard/expert.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,7 @@ void Expert::createGroups(const QDomElement &rootElem)
379379

380380
// Tree widget item for this group
381381
group.treeItem = new QTreeWidgetItem(m_treeWidget, QStringList() << translatedName);
382+
group.treeItem->setToolTip(0,SA("<qt>") + group.docs + SA("</qt>"));
382383

383384
group.section->hide();
384385
m_rightLayout->addWidget(group.section);

0 commit comments

Comments
 (0)