mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
DiveObjectHelper: check if dive has only one weightsystem
The mobile app should only allow editing the weight entry if there is no second weight defined. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
535a6b9b25
commit
ad7fb80d0a
2 changed files with 7 additions and 0 deletions
|
@ -187,6 +187,11 @@ QStringList DiveObjectHelper::weights() const
|
|||
return weights;
|
||||
}
|
||||
|
||||
bool DiveObjectHelper::singleWeight() const
|
||||
{
|
||||
return weightsystem_none(&m_dive->weightsystem[1]);
|
||||
}
|
||||
|
||||
QString DiveObjectHelper::weight(int idx) const
|
||||
{
|
||||
if ( (idx < 0) || idx > MAX_WEIGHTSYSTEMS )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue