mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
comment out segfaulting paint call
This commit is contained in:
parent
f23591abc0
commit
4020040674
@ -331,7 +331,7 @@ gGraphView::gGraphView(QWidget *parent, gGraphView *shared)
|
||||
|
||||
this->setMouseTracking(true);
|
||||
m_emptytext = STR_Empty_NoData;
|
||||
this->setEmptyImage(QPixmap(":/icons/logo.png"));
|
||||
m_emptyimage = QPixmap(":/icons/logo.png");
|
||||
InitGraphGlobals(); // FIXME: sstangl: handle error return.
|
||||
#ifdef ENABLE_THREADED_DRAWING
|
||||
m_idealthreads = QThread::idealThreadCount();
|
||||
@ -1432,7 +1432,7 @@ void gGraphView::paintGL()
|
||||
QRectF target(QRect(x, y, this->m_emptyimage.width(), this->m_emptyimage.height()));
|
||||
QRectF source(QRect(0, 0, this->m_emptyimage.width(), this->m_emptyimage.height()));
|
||||
|
||||
painter.drawPixmap(target, this->m_emptyimage, source);
|
||||
// painter.drawPixmap(target, this->m_emptyimage, source); // this is segfaulting! WHY ??
|
||||
|
||||
// tp2 = height() /2 + m_emptyimage.height()/2 + y2;
|
||||
} /*else {
|
||||
|
@ -463,7 +463,7 @@ class gGraphView
|
||||
QString emptyText() { return m_emptytext; }
|
||||
|
||||
//! \brief Sets the message displayed when there are no graphs to draw
|
||||
void setEmptyImage(QPixmap pm) { m_emptyimage = pm; }
|
||||
void setEmptyImage(QPixmap pm) { this->m_emptyimage = pm; }
|
||||
|
||||
inline const float &devicePixelRatio() { return m_dpr; }
|
||||
void setDevicePixelRatio(float dpr) { m_dpr = dpr; }
|
||||
|
Loading…
Reference in New Issue
Block a user