From 56351f08eb1ee845bc8d6dc5e15d3302c1e55e84 Mon Sep 17 00:00:00 2001 From: Gary Martin Date: Wed, 03 Oct 2012 17:48:42 +0000 Subject: Make hour hand a little thicker. --- (limited to 'clock.py') 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)), -- cgit v0.9.1