WrappingDateTimeEdit: Allow years to be stepped through.

This commit is contained in:
srcejon 2024-03-20 14:32:11 +00:00
parent 68b833ad97
commit 05fe7b8393
1 changed files with 5 additions and 1 deletions

View File

@ -29,7 +29,11 @@ WrappingDateTimeEdit::WrappingDateTimeEdit(QWidget *parent) :
void WrappingDateTimeEdit::stepBy(int steps)
{
if (currentSection() == QDateTimeEdit::MonthSection)
if (currentSection() == QDateTimeEdit::YearSection)
{
clipAndSetDate(date().addYears(steps));
}
else if (currentSection() == QDateTimeEdit::MonthSection)
{
clipAndSetDate(date().addMonths(steps));
}