git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26928 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-04-22 22:48:18 +00:00
parent 9abdd2cb90
commit 3e7c608160

View 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