Fixed text validation when char is put on next part of time input.

This commit is contained in:
23rd 2022-03-28 12:15:42 +03:00
parent 62002f034b
commit c676256872

View file

@ -284,6 +284,7 @@ void TimeInput::putNext(const object_ptr<TimePart> &field, QChar ch) {
field->setText(ch + field->getLastText());
field->setCursorPosition(1);
}
field->onTextEdited();
field->setFocus();
}