From 3e7c608160fd38549a11508d35b24b663ac36416 Mon Sep 17 00:00:00 2001
From: Robin Dunn <robin@alldunn.com>
Date: Thu, 22 Apr 2004 22:48:18 +0000
Subject: [PATCH] bugfix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 wxPython/wx/lib/calendar.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/wxPython/wx/lib/calendar.py b/wxPython/wx/lib/calendar.py
index 257b8c1c45..4cb46b1b3f 100644
--- a/wxPython/wx/lib/calendar.py
+++ b/wxPython/wx/lib/calendar.py
@@ -292,6 +292,8 @@ class CalDraw:
             self.cal_days.append(str(i))
             i = i + 1
 
+        self.end_pos = dow + dim
+
         return start_pos
 
     def SetWeekEnd(self, font_color=None, backgrd = None):
@@ -540,6 +542,9 @@ class CalDraw:
         f = wx.Font(10, self.font, wx.NORMAL, self.bold)      # initial font setting
         self._CalcFontSize(DC, f)
 
+        if key > self.end_pos: 
+            key = self.end_pos
+
         val = self.cal_days[key]
         cnt_x = key % 7
         cnt_y = int(key / 7)+1
-- 
2.47.2