Skip to content
Snippets Groups Projects
Commit ed537dab authored by Ulf Hermann's avatar Ulf Hermann
Browse files

QmlProfiler: Remove pointless second check for endTime


If the selected events aren't in the specified time range the selection
should be fixed.

Change-Id: I8cb6b57054888433b5ebf66fce3b479b3266f86e
Reviewed-by: default avatarKai Koehne <kai.koehne@digia.com>
parent ae32a276
No related branches found
No related tags found
No related merge requests found
......@@ -347,9 +347,6 @@ void TimelineRenderer::manageHovered(int mouseX, int mouseY)
// find if we are in the right column
int itemRow;
for (int i=eventTo; i>=eventFrom; --i) {
if (ceil(m_profilerModelProxy->getEndTime(modelIndex, i)*m_spacing) < floor(time*m_spacing))
continue;
itemRow = modelRowStart + m_profilerModelProxy->getEventRow(modelIndex, i);
if (itemRow == row) {
......
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