mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
More ScrollArea hacks
This commit is contained in:
parent
779b76db50
commit
1ce315e922
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user