From 5f3826b67a2c7201fa621bfdbb6e920ebb136857 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 25 Oct 2013 21:46:35 +1000 Subject: [PATCH] Removed superfluous redraw in YAxis Tooltips --- sleepyhead/Graphs/gGraphView.cpp | 3 ++- sleepyhead/Graphs/gYAxis.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index d09212b3..9d022c0c 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -1513,7 +1513,8 @@ void gGraph::mouseMoveEvent(QMouseEvent * event) for (int i=0;im_rect.contains(x,y)) - if (m_layers[i]->mouseMoveEvent(event,this)) doredraw=true; + if (m_layers[i]->mouseMoveEvent(event,this)) + doredraw=true; } y-=m_rect.top(); diff --git a/sleepyhead/Graphs/gYAxis.cpp b/sleepyhead/Graphs/gYAxis.cpp index 7a03a8d3..e2c6b199 100644 --- a/sleepyhead/Graphs/gYAxis.cpp +++ b/sleepyhead/Graphs/gYAxis.cpp @@ -367,7 +367,7 @@ bool gYAxis::mouseMoveEvent(QMouseEvent * event, gGraph * graph) int y=event->y(); if (!graph->units().isEmpty()) { graph->ToolTip(graph->units(),x,y-20,0); - graph->redraw(); + // graph->redraw(); } return true; }