#3145 Ensemble stat. Limit group header text size (the simple way)

This commit is contained in:
Bjørn Erik Jensen 2018-07-05 08:58:45 +02:00
parent f0dec1bc0a
commit 1188a5940b

View File

@ -181,6 +181,11 @@ void RimEnsembleCurveFilterCollection::defineUiOrdering(QString uiConfigName, ca
first = false;
}
groupTitle += " }";
if (groupTitle.size() > 45)
{
groupTitle = groupTitle.left(40) + "... }";
}
}
}