]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/lib/calendar.py
style sheet for the api docs
[wxWidgets.git] / wxPython / wx / lib / calendar.py
index 257b8c1c457931731f7d6ad2e9e7fa64ad820633..4cb46b1b3fd12e215eea4d99573015b55588e829 100644 (file)
@@ -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