summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/main.c b/main.c
index b8d5079cc..44373faf6 100644
--- a/main.c
+++ b/main.c
@@ -124,6 +124,16 @@ void report_dives(gboolean is_imported, gboolean prefer_imported)
int preexisting = dive_table.preexisting;
struct dive *last;
+ /* set the nickname for the divecomputer for newly downloaded dives */
+ for (i = dive_table.preexisting; i < dive_table.nr; i++)
+ if (dive_table.dives[i]->downloaded) {
+ set_dc_nickname(dive_table.dives[i]);
+ } else {
+ struct divecomputer *dc = &dive_table.dives[i]->dc;
+ if (dc->nickname && *dc->nickname)
+ remember_dc(dc->deviceid, dc->nickname, TRUE);
+ }
+
/* This does the right thing for -1: NULL */
last = get_dive(preexisting-1);