Added MaskedInputField::changed signal on wheel event in Ui::TimePart.

This commit is contained in:
23rd 2022-03-28 13:30:42 +03:00
parent c026c1125e
commit 9f28a0b106

View file

@ -68,6 +68,7 @@ void TimePart::wheelEvent(QWheelEvent *e) {
time -= max; time -= max;
} }
setText(QString::number(time)); setText(QString::number(time));
Ui::MaskedInputField::changed();
} }
void TimePart::correctValue( void TimePart::correctValue(