summaryrefslogtreecommitdiffstats
path: root/core/subsurface-qt
diff options
context:
space:
mode:
authorGravatar Joakim Bygdell <j.bygdell@gmail.com>2016-09-12 20:30:07 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-09-17 13:46:15 -0700
commit1219dc693170e4a04fff992bd5aed990674779c1 (patch)
treed81c6c58626c4fbed1b9b0605e015263c7056517 /core/subsurface-qt
parented11dab7fb4564369339e580511fa7913362b77b (diff)
downloadsubsurface-1219dc693170e4a04fff992bd5aed990674779c1.tar.gz
QML UI: deal with multiple buddies correctly
When editing adive in Subsurface-mobile we can only handle one buddy due to the limitations of the combobox. To prevent loss of data when editing a dive with more than one buddy we display "Multiple Buddies" in the buddy field. This creates a special case where no changes are written to the buddy field unless the user changes buddy for that dive. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/subsurface-qt')
-rw-r--r--core/subsurface-qt/DiveObjectHelper.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/subsurface-qt/DiveObjectHelper.cpp b/core/subsurface-qt/DiveObjectHelper.cpp
index 37f954cb7..246e4510b 100644
--- a/core/subsurface-qt/DiveObjectHelper.cpp
+++ b/core/subsurface-qt/DiveObjectHelper.cpp
@@ -425,6 +425,7 @@ QStringList DiveObjectHelper::buddyList() const
QRegExp sep("(,\\s)");
QStringList tempList = temp.split(sep);
buddies << tempList;
+ buddies << "Multiple Buddies";
}
}
buddies.removeDuplicates();