Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xclock.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/clock.py b/clock.py
index 46c95c8..fa78269 100755
--- a/clock.py
+++ b/clock.py
@@ -721,8 +721,8 @@ class ClockFace(gtk.DrawingArea):
sin = math.sin(i * math.pi / 30.0)
cr.move_to(int(self._center_x + (self._radius - inset) * cos),
int(self._center_y + (self._radius - inset) * sin))
- cr.line_to(int(self._center_x + self._radius * cos),
- int(self._center_y + self._radius * sin))
+ cr.line_to(int(self._center_x + (self._radius - 3) * cos),
+ int(self._center_y + (self._radius - 3) * sin))
cr.stroke()
def _draw_nice_background(self):