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 19:04:20 (GMT)
committer Gary Martin <gary@garycmartin.com>2012-10-03 19:04:20 (GMT)
commit347f73479f2dc4fc507cf914cfb5805a17130d6c (patch)
tree3fdb8c9e2c711f37e75a39a6d043f52534039096
parent55284f5d9691c558f8524f61e0bf38fe57bde6cb (diff)
Make white background of Digital Clock an equal thickness all around the time sacle graphics.
-rwxr-xr-xclock.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/clock.py b/clock.py
index 19c9f44..3e66185 100755
--- a/clock.py
+++ b/clock.py
@@ -628,9 +628,9 @@ class ClockFace(gtk.DrawingArea):
cr = self.window.cairo_create()
cr.set_source_rgba(*style.Color(self._COLOR_WHITE).get_rgba())
cr.rectangle(round(self._center_x - 1.1 * self._radius),
- round(self._center_y - 0.8 * self._radius),
+ round(self._center_y - 0.85 * self._radius),
round(2.2 * self._radius),
- round(0.55 * self._radius))
+ round(0.65 * self._radius))
cr.fill()
h = round(0.15 * self._radius)