projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53e5be6
)
Patch for [ 1489711 ] analogclock hour hand sticks on 12:00 noon
author
Robin Dunn
<robin@alldunn.com>
Tue, 20 Jun 2006 16:36:55 +0000
(16:36 +0000)
committer
Robin Dunn
<robin@alldunn.com>
Tue, 20 Jun 2006 16:36:55 +0000
(16:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39808
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
wxPython/wx/lib/analogclock/helpers.py
patch
|
blob
|
blame
|
history
diff --git
a/wxPython/wx/lib/analogclock/helpers.py
b/wxPython/wx/lib/analogclock/helpers.py
index 30c66066fbda7f82f63357cbfbb99d800ec86ea7..c459067d586e256f3e5ec398f0901a6674989fb7 100644
(file)
--- a/
wxPython/wx/lib/analogclock/helpers.py
+++ b/
wxPython/wx/lib/analogclock/helpers.py
@@
-479,11
+479,13
@@
class HandSet:
idx = ends[i]
# Is this the hours hand?
if i == 0:
- idx = idx * 5 + ends[1] / 12
- # Adjust idx offset and prevent exceptions on leap seconds.
- idx = idx - 1
- if idx < 0 or idx > 59:
+ idx = idx * 5 + ends[1] / 12 - 1
+ # else prevent exceptions on leap seconds
+ elif idx <= 0 or idx > 60:
idx = 59
+ # and adjust idx offset for minutes and non-leap seconds
+ else:
+ idx = idx - 1
angle = math.radians(180 - 6 * (idx + 1))
hand.dyer.Select(dc, shadow)