mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +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);
|
this->setMouseTracking(true);
|
||||||
m_emptytext = STR_Empty_NoData;
|
m_emptytext = STR_Empty_NoData;
|
||||||
this->setEmptyImage(QPixmap(":/icons/logo.png"));
|
m_emptyimage = QPixmap(":/icons/logo.png");
|
||||||
InitGraphGlobals(); // FIXME: sstangl: handle error return.
|
InitGraphGlobals(); // FIXME: sstangl: handle error return.
|
||||||
#ifdef ENABLE_THREADED_DRAWING
|
#ifdef ENABLE_THREADED_DRAWING
|
||||||
m_idealthreads = QThread::idealThreadCount();
|
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 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()));
|
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;
|
// tp2 = height() /2 + m_emptyimage.height()/2 + y2;
|
||||||
} /*else {
|
} /*else {
|
||||||
|
@ -463,7 +463,7 @@ class gGraphView
|
|||||||
QString emptyText() { return m_emptytext; }
|
QString emptyText() { return m_emptytext; }
|
||||||
|
|
||||||
//! \brief Sets the message displayed when there are no graphs to draw
|
//! \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; }
|
inline const float &devicePixelRatio() { return m_dpr; }
|
||||||
void setDevicePixelRatio(float dpr) { m_dpr = dpr; }
|
void setDevicePixelRatio(float dpr) { m_dpr = dpr; }
|
||||||
|
Loading…
Reference in New Issue
Block a user