Selection time in status bar fix, removed duration from under overlay bars

This commit is contained in:
Mark Watkins 2011-12-14 21:57:18 +10:00
parent 786816296a
commit 8a253a4db1
2 changed files with 5 additions and 4 deletions

View File

@ -1208,7 +1208,7 @@ void gGraph::mouseMoveEvent(QMouseEvent * event)
if (a2>w) a2=w;
m_selecting_area=true;
m_selection=QRect(a1-1,0,a2-a1,m_lastbounds.height());
double w2=m_lastbounds.width(); //-(right+m_marginright)-(m_marginleft+left);
double w2=m_lastbounds.width()-right-left; //-(right+m_marginright)-(m_marginleft+left);
if (m_blockzoom) {
xmult=(rmax_x-rmin_x)/w2;
} else xmult=(max_x-min_x)/w2;

View File

@ -116,9 +116,10 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh
GetTextExtent(m_label,x,y);
w.renderText(m_label,x1-(x/2),top-y+(3*w.printScaleY()));
QString a=QString::number(int(el.data(i)));
GetTextExtent(a,x,y);
w.renderText(a,x1-(x/2),bottom+y+(3*w.printScaleY()));
// The follow lines enable the duration display underneath
// QString a=QString::number(int(el.data(i)));
// GetTextExtent(a,x,y);
// w.renderText(a,x1-(x/2),bottom+y+(3*w.printScaleY()));
}
}