Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/clock.py
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2012-10-03 17:48:42 (GMT)
committer Gary Martin <gary@garycmartin.com>2012-10-03 17:48:42 (GMT)
commit56351f08eb1ee845bc8d6dc5e15d3302c1e55e84 (patch)
tree84efcc32ccc8dd3e9481d8313355f45fdefa6c3e /clock.py
parent8c8986e46b8f24e61b88f8ec62194a4092f75251 (diff)
Make hour hand a little thicker.
Diffstat (limited to 'clock.py')
-rwxr-xr-xclock.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/clock.py b/clock.py
index 81fb889..46c95c8 100755
--- a/clock.py
+++ b/clock.py
@@ -762,7 +762,7 @@ class ClockFace(gtk.DrawingArea):
# The hour hand is rotated 30 degrees (pi/6 r) per hour +
# 1/2 a degree (pi/360) per minute
cr.set_source_rgba(*style.Color(self._COLOR_HOURS).get_rgba())
- cr.set_line_width(8 * self._line_width)
+ cr.set_line_width(9 * self._line_width)
cr.move_to(self._center_x, self._center_y)
cr.line_to(int(self._center_x + self._radius * 0.5 *
math.sin(math.pi / 6 * hours + math.pi / 360 * minutes)),