forked from qt-creator/qt-creator
QmlProfiler: revert to fixed layout for detail windows
The dynamic layout creates more problems than it solves. A fixed layout with proper elision and fixed window width certainly looks better. Also, the view has to add the colons after the labels now. Change-Id: I649351a742bd129ea9738359bac27e55e29d6a93 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
This commit is contained in:
@@ -294,10 +294,7 @@ QVariantMap RangeTimelineModel::details(int index) const
|
||||
result.insert(QStringLiteral("displayName"), categoryLabel(d->rangeType));
|
||||
result.insert(tr("Duration"), QmlProfilerBaseModel::formatTime(range(index).duration));
|
||||
|
||||
QString detailsString = types[id].data;
|
||||
if (detailsString.length() > 40)
|
||||
detailsString = detailsString.left(40) + QLatin1String("...");
|
||||
result.insert(tr("Details"), detailsString);
|
||||
result.insert(tr("Details"), types[id].data);
|
||||
result.insert(tr("Location"), types[id].displayName);
|
||||
return result;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user