1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-25 01:18:38 -05:00

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

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));
}