More ScrollArea hacks

This commit is contained in:
Mark Watkins 2011-08-20 18:20:22 +10:00
parent 779b76db50
commit 1ce315e922

View File

@ -16,6 +16,7 @@
#include <QPixmap> #include <QPixmap>
#include <QMessageBox> #include <QMessageBox>
#include <QResizeEvent> #include <QResizeEvent>
#include <QScrollBar>
#include "SleepLib/session.h" #include "SleepLib/session.h"
#include "Graphs/graphdata_custom.h" #include "Graphs/graphdata_custom.h"
@ -43,15 +44,17 @@ MyScrollArea::~MyScrollArea()
void MyScrollArea::scrollContentsBy(int dx, int dy) void MyScrollArea::scrollContentsBy(int dx, int dy)
{ {
QScrollArea::scrollContentsBy(dx,dy); QScrollArea::scrollContentsBy(dx,dy);
widget()->repaint(horizontalScrollBar()->value(), verticalScrollBar()->value(), width(), height());
//m_daily->RedrawGraphs(); //m_daily->RedrawGraphs();
//gGraphWindow g; //gGraphWindow g;
#ifdef Q_WS_MAC #ifdef Q_WS_MAC
if (timer->isActive()) timer->stop(); /*if (timer->isActive()) timer->stop();
timer->setSingleShot(true); timer->setSingleShot(true);
timer->setInterval(200); timer->setInterval(200);
connect(timer,SIGNAL(timeout()),SLOT(UpdateGraphs())); connect(timer,SIGNAL(timeout()),SLOT(UpdateGraphs()));
timer->start(); timer->start();
m_time.start(); m_time.start(); */
//m_daily->RedrawGraphs(); //m_daily->RedrawGraphs();
#endif #endif
} }