From 347f73479f2dc4fc507cf914cfb5805a17130d6c Mon Sep 17 00:00:00 2001 From: Gary Martin Date: Wed, 03 Oct 2012 19:04:20 +0000 Subject: Make white background of Digital Clock an equal thickness all around the time sacle graphics. --- (limited to 'clock.py') 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) -- cgit v0.9.1