Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2012-10-03 14:06:56 (GMT)
committer Gary Martin <gary@garycmartin.com>2012-10-03 14:06:56 (GMT)
commit3b0d7ce739733186ca9b8849d56700a6bd75ff57 (patch)
tree240ff802cabffb087beaa311fec1c1fe681602a1
parent03349852bb6af81575096dec9f9a16ce09c3770f (diff)
Added back in rounded caps to tick marks.
-rwxr-xr-xclock.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/clock.py b/clock.py
index 5576362..bee12c6 100755
--- a/clock.py
+++ b/clock.py
@@ -699,6 +699,7 @@ class ClockFace(gtk.DrawingArea):
"""
cr = self.window.cairo_create()
cr.set_line_width(4 * self._line_width)
+ cr.set_line_cap(cairo.LINE_CAP_ROUND)
# Simple clock background
cr.set_source_rgba(*style.Color(self._COLOR_WHITE).get_rgba())