mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
QML UI: dive edit, treat numeric input of duration as full minutes
When editing the duration of a dive, if only numbers are entered they are treated as full miuntes. Signed-off-by: Joakim Bygdell <j.bygdell@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
0eebfb284e
commit
8566523b43
1 changed files with 3 additions and 0 deletions
|
@ -435,6 +435,7 @@ QString QMLManager::commitChanges(QString diveId, QString date, QString location
|
|||
QRegExp r3(QStringLiteral("(\\d*)\\s*%1").arg(tr("min")), Qt::CaseInsensitive);
|
||||
QRegExp r4(QStringLiteral("(\\d*):(\\d*):(\\d*)"));
|
||||
QRegExp r5(QStringLiteral("(\\d*):(\\d*)"));
|
||||
QRegExp r6(QStringLiteral("(\\d*)"));
|
||||
if (r1.indexIn(duration) >= 0) {
|
||||
h = r1.cap(1).toInt();
|
||||
m = r1.cap(2).toInt();
|
||||
|
@ -451,6 +452,8 @@ QString QMLManager::commitChanges(QString diveId, QString date, QString location
|
|||
} else if (r5.indexIn(duration) >= 0) {
|
||||
h = r5.cap(1).toInt();
|
||||
m = r5.cap(2).toInt();
|
||||
} else if (r6.indexIn(duration) >= 0) {
|
||||
m = r6.cap(1).toInt();
|
||||
}
|
||||
d->dc.duration.seconds = d->duration.seconds = h * 3600 + m * 60 + s;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue