mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Stop far right XTicker flowing into graph margin
This commit is contained in:
parent
add1a51db6
commit
2749998f93
@ -379,7 +379,7 @@ bool SummaryChart::mouseMoveEvent(QMouseEvent *event)
|
||||
|
||||
day=m_days[zd];
|
||||
x+=gYAxis::Margin+gGraphView::titleWidth; //graph->m_marginleft+
|
||||
int y=event->y()+rtop-10;
|
||||
int y=event->y()+rtop-15;
|
||||
|
||||
QDateTime dt=QDateTime::fromTime_t(hl_day*86400);
|
||||
|
||||
|
@ -193,7 +193,8 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height)
|
||||
GetTextExtent(tmpstr,x,y); // this only really needs running once :(
|
||||
if (m_utcfix)
|
||||
tx+=step_pixels/2.0;
|
||||
w.renderText(tmpstr,tx,top+18);
|
||||
if ((tx+x)<(left+width))
|
||||
w.renderText(tmpstr,tx,top+18);
|
||||
py=px;
|
||||
for (int j=1;j<num_minor_ticks;j++) {
|
||||
py+=step_pixels;
|
||||
|
Loading…
Reference in New Issue
Block a user