Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2013-09-03 12:55:38 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2013-09-03 12:55:38 (GMT)
commitda01c80908398c411461a0b5b86469ad83179035 (patch)
tree46a52f1b3a035e03ce944291828c542ff5c166c6
parent731c8890449e9ea3cc0d28071f5159bfcf36df0f (diff)
Change stroke width on graphics bars from 5 to 3
-rw-r--r--Widgets.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Widgets.py b/Widgets.py
index a30f55b..90c37ae 100644
--- a/Widgets.py
+++ b/Widgets.py
@@ -826,7 +826,7 @@ class PollCanvas(Gtk.Box):
context.set_source_rgba(*fill_color.get_rgba())
context.fill_preserve()
context.set_source_rgba(*stroke_color.get_rgba())
- context.set_line_width(5)
+ context.set_line_width(3)
context.stroke()
return True