From fa5c713f736e58ebcd49bbe2f07d1a20b2433ae2 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Thu, 30 Oct 2014 13:01:09 -0700 Subject: After editing tags, get the right tags into the displayed dive We forgot to clear out the pre-existing tags. We did this for the actual selected dives that were being edited, but not for the displayed_dive, so deleted tags showed up again on screen (even though they were correctly deleted from the selected dives in the dive list). Fixes #732 Signed-off-by: Dirk Hohndel --- qt-ui/maintab.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 7b052e984..fcb3cd362 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -997,6 +997,8 @@ void MainTab::on_timeEdit_timeChanged(const QTime &time) void MainTab::saveTags() { struct dive *cd = current_dive; + taglist_free(displayed_dive.tag_list); + displayed_dive.tag_list = NULL; Q_FOREACH (const QString& tag, ui.tagWidget->getBlockStringList()) taglist_add_tag(&displayed_dive.tag_list, tag.toUtf8().data()); taglist_cleanup(&displayed_dive.tag_list); -- cgit v1.2.3-70-g09d2