Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/elements
diff options
context:
space:
mode:
Diffstat (limited to 'elements')
-rwxr-xr-xelements/drawing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/elements/drawing.py b/elements/drawing.py
index 85f5247..a537125 100755
--- a/elements/drawing.py
+++ b/elements/drawing.py
@@ -196,7 +196,7 @@ class draw_cairo(object):
self.imagesurface = self.cairo.ImageSurface(self.cairo.FORMAT_ARGB32, self.width, self.height);
self.ctx = ctx = self.cairo.Context(self.imagesurface)
- ctx.set_source_rgb(1, 1, 1) # background color
+ ctx.set_source_rgb(0, 0, 0) # background color
ctx.paint()
ctx.move_to(0, 0)