mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
dc-download: use short date string
In both places in the UI where we show the date of a dive during download we are actually pressed for space. So let's use the short version of the date string to save some space. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
44691dae10
commit
838151835b
1 changed files with 1 additions and 1 deletions
|
@ -1009,7 +1009,7 @@ QString get_short_dive_date_string(timestamp_t when)
|
|||
|
||||
char *get_dive_date_c_string(timestamp_t when)
|
||||
{
|
||||
QString text = get_dive_date_string(when);
|
||||
QString text = get_short_dive_date_string(when);
|
||||
return copy_qstring(text);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue