From 8668096b32c67a5f15d844721cb27cc90e60147a Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 22 Dec 2011 13:18:33 +1000 Subject: [PATCH] Layer not setting day object correctly (fixes Pie Chart) --- Graphs/gGraphView.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index e2ea9bb1..b6121509 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -772,7 +772,7 @@ void Layer::drawGLBuf(float linesize) void Layer::SetDay(Day * d) { - if (d && m_code) { + if (d) { m_day=d; m_minx=d->first(m_code); m_maxx=d->last(m_code); @@ -2488,7 +2488,7 @@ void gGraphView::paintGL() glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); bool numgraphs=true; - const int animTimeout=800; + const int animTimeout=400; float phase=0; int elapsed=0;