diff --git a/Resources.qrc b/Resources.qrc
index 09eb9209..7494e426 100644
--- a/Resources.qrc
+++ b/Resources.qrc
@@ -15,5 +15,6 @@
docs/usage.html
icons/oximeter.png
docs/0.0.gif
+ docs/smiley.png
diff --git a/daily.cpp b/daily.cpp
index fa288950..962000a5 100644
--- a/daily.cpp
+++ b/daily.cpp
@@ -81,10 +81,10 @@ Daily::Daily(QWidget *parent,QGLWidget * shared, MainWindow *mw)
ui->graphLayout->setMargin(0);
ui->graphLayout->setContentsMargins(0,0,0,0);
scrollArea->setWidgetResizable(true);
- scrollArea->setAutoFillBackground(false);
+ scrollArea->setAutoFillBackground(true);
- GraphLayout=new QWidget(scrollArea);
- GraphLayout->setAutoFillBackground(false);
+ GraphLayout=new QGLWidget(scrollArea);
+ GraphLayout->setAutoFillBackground(true);
scrollArea->setWidget(GraphLayout);
splitter=new QVBoxLayout(GraphLayout);
@@ -106,7 +106,7 @@ Daily::Daily(QWidget *parent,QGLWidget * shared, MainWindow *mw)
//ui->scrollArea->setWidget(splitter);
//this->connect(ui->scrollArea,
//ui->graphSizer->addWidget(splitter);
- scrollArea->setAutoFillBackground(false);
+ //scrollArea->setAutoFillBackground(false);
//splitter->setAutoFillBackground(false);
diff --git a/docs/0.0.gif b/docs/0.0.gif
index a20ee944..9e022bd0 100644
Binary files a/docs/0.0.gif and b/docs/0.0.gif differ