From e826a461c17d639a5140573ca78d2528a39f332d Mon Sep 17 00:00:00 2001 From: Ulf Hermann Date: Fri, 9 Dec 2016 15:42:42 +0100 Subject: [PATCH] QmlProfiler: Drop type from flamegraph details It is unnecessary as it's already shown in the title, and it wasn't translated, so it showed as "undefined: ". Change-Id: I063b78df5778d17db8849f73c470184546e0daeb Reviewed-by: Milian Wolff --- src/plugins/qmlprofiler/qml/QmlProfilerFlameGraphView.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/src/plugins/qmlprofiler/qml/QmlProfilerFlameGraphView.qml b/src/plugins/qmlprofiler/qml/QmlProfilerFlameGraphView.qml index 6ab8af2ef35..58e45b0b21f 100644 --- a/src/plugins/qmlprofiler/qml/QmlProfilerFlameGraphView.qml +++ b/src/plugins/qmlprofiler/qml/QmlProfilerFlameGraphView.qml @@ -217,7 +217,6 @@ ScrollView { model.push(qsTr("Various Events")); } else { addDetail(QmlProfilerFlameGraphModel.DetailsRole, noop); - addDetail(QmlProfilerFlameGraphModel.TypeRole, noop); addDetail(QmlProfilerFlameGraphModel.CallCountRole, noop); addDetail(QmlProfilerFlameGraphModel.DurationRole, printTime); addDetail(QmlProfilerFlameGraphModel.TimePerCallRole, printTime);