bugfix
This commit is contained in:
parent
d5bbcfc630
commit
743c6290f0
@ -324,7 +324,7 @@ class MDDatePicker(FloatLayout, ThemableBehavior, RectangularElevationBehavior,
|
|||||||
self.cal_list = cal_list
|
self.cal_list = cal_list
|
||||||
|
|
||||||
def change_month(self, operation):
|
def change_month(self, operation):
|
||||||
op = 1 if operation is 'next' else -1
|
op = 1 if operation == 'next' else -1
|
||||||
sl, sy = self.month, self.year
|
sl, sy = self.month, self.year
|
||||||
m = 12 if sl + op == 0 else 1 if sl + op == 13 else sl + op
|
m = 12 if sl + op == 0 else 1 if sl + op == 13 else sl + op
|
||||||
y = sy - 1 if sl + op == 0 else sy + 1 if sl + op == 13 else sy
|
y = sy - 1 if sl + op == 0 else sy + 1 if sl + op == 13 else sy
|
||||||
|
Loading…
Reference in New Issue
Block a user