mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Layer not setting day object correctly (fixes Pie Chart)
This commit is contained in:
parent
5081e7f711
commit
8668096b32
@ -772,7 +772,7 @@ void Layer::drawGLBuf(float linesize)
|
|||||||
|
|
||||||
void Layer::SetDay(Day * d)
|
void Layer::SetDay(Day * d)
|
||||||
{
|
{
|
||||||
if (d && m_code) {
|
if (d) {
|
||||||
m_day=d;
|
m_day=d;
|
||||||
m_minx=d->first(m_code);
|
m_minx=d->first(m_code);
|
||||||
m_maxx=d->last(m_code);
|
m_maxx=d->last(m_code);
|
||||||
@ -2488,7 +2488,7 @@ void gGraphView::paintGL()
|
|||||||
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
|
||||||
|
|
||||||
bool numgraphs=true;
|
bool numgraphs=true;
|
||||||
const int animTimeout=800;
|
const int animTimeout=400;
|
||||||
float phase=0;
|
float phase=0;
|
||||||
|
|
||||||
int elapsed=0;
|
int elapsed=0;
|
||||||
|
Loading…
Reference in New Issue
Block a user