mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 20:33:24 +00:00
Download dialog showed time incorrectly
The used time format was h:mh: i.e. 1:16h: This patch gets rid of the colon after the hour indicator. Signed-off-by: Miika Turkia <miika.turkia@gmail.com>
This commit is contained in:
parent
e7a7bd4de2
commit
22e40063f1
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ QVariant DiveImportedModel::data(const QModelIndex &index, int role) const
|
|||
case 0:
|
||||
return QVariant(get_short_dive_date_string(d->when));
|
||||
case 1:
|
||||
return QVariant(get_dive_duration_string(d->duration.seconds, tr("h:"), tr("min")));
|
||||
return QVariant(get_dive_duration_string(d->duration.seconds, tr("h"), tr("min")));
|
||||
case 2:
|
||||
return QVariant(get_depth_string(d->maxdepth.mm, true, false));
|
||||
case 3:
|
||||
|
|
Loading…
Add table
Reference in a new issue