Try making snapshot graphs scale when resized

This commit is contained in:
Mark Watkins 2014-08-28 00:41:16 +10:00
parent f6fe01c5bc
commit 37e20bf504
2 changed files with 2 additions and 2 deletions

View File

@ -322,7 +322,7 @@ void gGraph::paint(QPainter &painter, const QRegion &region)
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));

View File

@ -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;