Re-enabled keyboard and bugfix to work with overview

This commit is contained in:
Mark Watkins 2011-09-07 19:23:34 +10:00
parent cc5dab6050
commit de83d22523
2 changed files with 2 additions and 3 deletions

View File

@ -1839,7 +1839,6 @@ void gGraphView::wheelEvent(QWheelEvent * event)
void gGraphView::keyPressEvent(QKeyEvent * event)
{
return;
gGraph *g;
for (int i=0;i<m_graphs.size();i++) {
if (m_graphs[i]->group()==0) {

View File

@ -53,8 +53,8 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
layout->layout();
const int default_height=180;
AHI=new gGraph(GraphView,"AHI Chart",default_height,2);
UC=new gGraph(GraphView,"Usage Chart",default_height,2);
AHI=new gGraph(GraphView,"AHI Chart",default_height,0);
UC=new gGraph(GraphView,"Usage Chart",default_height,0);
uc=new UsageChart(profile);
UC->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
gXAxis *gx=new gXAxis();