mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
5fae7ce7a0
Include unused tanks in merges of multiple logs into a single dive if the 'Show unused cylinders' preference is enabled. Also rename the preference (in code) to `include_unused_tanks` to reflect the fact that it is already used in more places than just the display (exporting, cloning dives). Simplified the cylinder model to make forced inclusion of unused tanks dependent on use of the model in planner. Leaving the persisted name of the preference as `display_unused_tanks` to avoid resetting this for all users - is there a good way to migrate preference names? Signed-off-by: Michael Keller <github@ike.ch>
23 lines
755 B
C++
23 lines
755 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#include "qPrefEquipment.h"
|
|
#include "qPrefPrivate.h"
|
|
|
|
static const QString group = QStringLiteral("Equipment");
|
|
|
|
qPrefEquipment *qPrefEquipment::instance()
|
|
{
|
|
static qPrefEquipment *self = new qPrefEquipment;
|
|
return self;
|
|
}
|
|
|
|
void qPrefEquipment::loadSync(bool doSync)
|
|
{
|
|
disk_default_cylinder(doSync);
|
|
disk_include_unused_tanks(doSync);
|
|
disk_display_default_tank_infos(doSync);
|
|
}
|
|
|
|
HANDLE_PREFERENCE_TXT(Equipment, "default_cylinder", default_cylinder);
|
|
// Keeping the persisted preference name the same to avoid resetting this for everybody
|
|
HANDLE_PREFERENCE_BOOL(Equipment, "display_unused_tanks", include_unused_tanks);
|
|
HANDLE_PREFERENCE_BOOL(Equipment, "display_default_tank_infos", display_default_tank_infos);
|