From 838151835bebb5ee5c2a71e20d7d28c4d1a8be54 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 28 Oct 2021 12:20:33 -0700 Subject: [PATCH] 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 --- core/qthelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/qthelper.cpp b/core/qthelper.cpp index c159a8297..7c7e38ba8 100644 --- a/core/qthelper.cpp +++ b/core/qthelper.cpp @@ -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); }