summaryrefslogtreecommitdiffstats
path: root/examples/gui/rasterwindow/rasterwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gui/rasterwindow/rasterwindow.cpp')
-rw-r--r--examples/gui/rasterwindow/rasterwindow.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gui/rasterwindow/rasterwindow.cpp b/examples/gui/rasterwindow/rasterwindow.cpp
index e240b7f31c..4dd2ac25ca 100644
--- a/examples/gui/rasterwindow/rasterwindow.cpp
+++ b/examples/gui/rasterwindow/rasterwindow.cpp
@@ -107,7 +107,7 @@ void RasterWindow::renderNow()
QPaintDevice *device = m_backingStore->paintDevice();
QPainter painter(device);
- painter.fillRect(0, 0, width(), height(), Qt::white);
+ painter.fillRect(0, 0, width(), height(), QGradient::NightFade);
render(&painter);
painter.end();