mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Autogroup only when selected
Comitsf427226b3b
and43c3885249
of the undo series introduced 2 calls of autogroup_dives() without checking the autogroup global boolean. This is a bug. An import from DC (for example) then triggers an autogrouping, the divelist is autogrouped, and the UI button is off. This commit solves this. I've chosen for a guard in the autogroup_dives() that now is a no-op when called when the user did not select autogrouping. In additon, simplified the other calls to this function, as we do not need to check before calling any more. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
parent
068b01aef2
commit
ac9bab7e2f
3 changed files with 9 additions and 9 deletions
|
@ -174,8 +174,7 @@ void DiveImportedModel::recordDives()
|
|||
}
|
||||
|
||||
process_imported_dives(diveTable, true, true);
|
||||
if (autogroup)
|
||||
autogroup_dives();
|
||||
autogroup_dives();
|
||||
}
|
||||
|
||||
QHash<int, QByteArray> DiveImportedModel::roleNames() const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue