Skip to content
Snippets Groups Projects
Commit 106d111f authored by kh1's avatar kh1
Browse files

Fixes broken attribute list for real.

Task-number: QTCREATORBUG-1621
parent 3cf8d211
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ void FilterSettingsPage::updateFilterPage()
foreach (const QString &attribute, attributes)
new QTreeWidgetItem(m_ui.attributeWidget, QStringList(attribute));
if (m_filterMap.keys().isEmpty()) {
if (!m_filterMap.keys().isEmpty()) {
m_ui.filterWidget->setCurrentRow(0);
updateAttributes(m_ui.filterWidget->currentItem());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment