Ignore group expansion.

This commit is contained in:
Louis-Bertrand Varin 2017-04-04 10:21:45 -04:00
parent b7546b45b3
commit bce747e7f9
4 changed files with 14 additions and 0 deletions

View file

@ -296,6 +296,9 @@ void Group::setExpanded(bool expanded)
if (m_data.isExpanded != expanded) {
m_data.isExpanded = expanded;
updateTimeinfo();
if (config()->get("IgnoreGroupExpansion").toBool()) {
return;
}
emit modified();
}
}