mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Selection time in status bar fix, removed duration from under overlay bars
This commit is contained in:
parent
786816296a
commit
8a253a4db1
@ -1208,7 +1208,7 @@ void gGraph::mouseMoveEvent(QMouseEvent * event)
|
|||||||
if (a2>w) a2=w;
|
if (a2>w) a2=w;
|
||||||
m_selecting_area=true;
|
m_selecting_area=true;
|
||||||
m_selection=QRect(a1-1,0,a2-a1,m_lastbounds.height());
|
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) {
|
if (m_blockzoom) {
|
||||||
xmult=(rmax_x-rmin_x)/w2;
|
xmult=(rmax_x-rmin_x)/w2;
|
||||||
} else xmult=(max_x-min_x)/w2;
|
} else xmult=(max_x-min_x)/w2;
|
||||||
|
@ -116,9 +116,10 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh
|
|||||||
GetTextExtent(m_label,x,y);
|
GetTextExtent(m_label,x,y);
|
||||||
w.renderText(m_label,x1-(x/2),top-y+(3*w.printScaleY()));
|
w.renderText(m_label,x1-(x/2),top-y+(3*w.printScaleY()));
|
||||||
|
|
||||||
QString a=QString::number(int(el.data(i)));
|
// The follow lines enable the duration display underneath
|
||||||
GetTextExtent(a,x,y);
|
// QString a=QString::number(int(el.data(i)));
|
||||||
w.renderText(a,x1-(x/2),bottom+y+(3*w.printScaleY()));
|
// GetTextExtent(a,x,y);
|
||||||
|
// w.renderText(a,x1-(x/2),bottom+y+(3*w.printScaleY()));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user