We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents df4b71e + 0b63224 commit d865580Copy full SHA for d865580
1 file changed
addon/doxywizard/expert.cpp
@@ -209,7 +209,7 @@ Expert::Expert()
209
m_treeWidget = new QTreeWidget;
210
m_treeWidget->setColumnCount(1);
211
m_treeWidget->setHeaderLabel(tr("Topics"));
212
- m_treeWidget->setRootIsDecorated(false);
+ m_treeWidget->setRootIsDecorated(true);
213
m_treeWidget->header()->setSectionResizeMode(QHeaderView::Fixed);
214
215
// --- Right: scroll area containing all group sections ---
@@ -1115,7 +1115,6 @@ void Expert::filterChanged(const QString &text)
1115
{
1116
QString filter = text.trimmed().toLower();
1117
bool showAll = filter.length()<=2;
1118
- m_treeWidget->setRootIsDecorated(!showAll);
1119
1120
m_rightContainer->setUpdatesEnabled(false);
1121
m_treeWidget->setUpdatesEnabled(false);
0 commit comments