mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Try making snapshot graphs scale when resized
This commit is contained in:
parent
f6fe01c5bc
commit
37e20bf504
@ -322,7 +322,7 @@ void gGraph::paint(QPainter &painter, const QRegion ®ion)
|
||||
|
||||
|
||||
if (m_issnapshot) {
|
||||
painter.drawPixmap(0, originY, m_snapshot);
|
||||
painter.drawPixmap(QRect(0, originY,width,height), m_snapshot, m_snapshot.rect());
|
||||
QLinearGradient linearGrad(QPointF(100, 100), QPointF(width / 2, 100));
|
||||
linearGrad.setColorAt(0, QColor(255, 150, 150,30));
|
||||
linearGrad.setColorAt(1, QColor(255,255,255,20));
|
||||
|
@ -2101,7 +2101,7 @@ void gGraphView::onSnapshotGraphToggle()
|
||||
newgraph->setSnapshot(pm);
|
||||
newgraph->setBlockSelect(true);
|
||||
newgraph->setHeight(pm.height());
|
||||
newgraph->setMinHeight(pm.height());
|
||||
//newgraph->setMinHeight(pm.height());
|
||||
|
||||
m_graphs.insert(m_graphs.indexOf(graph)+1, newgraph);
|
||||
m_graphsbyname[newname] = newgraph;
|
||||
|
Loading…
Reference in New Issue
Block a user