nyx: fix months that have 30/31 days on date picker

This commit is contained in:
CTCaer 2021-10-15 16:50:16 +03:00
parent 147c82e0e2
commit 3c81ac91df

View file

@ -605,9 +605,8 @@ static lv_res_t _action_clock_edit(lv_obj_t *btns, const char * txt)
break;
case 4:
case 6:
case 8:
case 10:
case 12:
case 9:
case 11:
if (day > 30)
day = 30;
break;