mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
profile: detect dive-mode change in profile
The profile must be replotted when the dive mode changes. Weirdly, this was routed via the dive-information tab (making it inherently non-mobile compatible). Detect such a change directly in the profile. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
aefbde93ce
commit
0b0e6672d5
3 changed files with 14 additions and 9 deletions
|
@ -32,7 +32,6 @@
|
|||
#include "core/gettextfromc.h"
|
||||
#include "core/imagedownloader.h"
|
||||
#endif
|
||||
#include "core/subsurface-qt/divelistnotifier.h"
|
||||
|
||||
#include <libdivecomputer/parser.h>
|
||||
#include <QScrollBar>
|
||||
|
@ -174,6 +173,7 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : QGraphicsView(parent),
|
|||
connect(&diveListNotifier, &DiveListNotifier::cylinderEdited, this, &ProfileWidget2::profileChanged);
|
||||
connect(&diveListNotifier, &DiveListNotifier::eventsChanged, this, &ProfileWidget2::profileChanged);
|
||||
connect(&diveListNotifier, &DiveListNotifier::pictureOffsetChanged, this, &ProfileWidget2::pictureOffsetChanged);
|
||||
connect(&diveListNotifier, &DiveListNotifier::divesChanged, this, &ProfileWidget2::divesChanged);
|
||||
#endif // SUBSURFACE_MOBILE
|
||||
|
||||
#if !defined(QT_NO_DEBUG) && defined(SHOW_PLOT_INFO_TABLE)
|
||||
|
@ -814,6 +814,16 @@ void ProfileWidget2::plotDive(const struct dive *d, bool force, bool doClearPict
|
|||
}
|
||||
}
|
||||
|
||||
void ProfileWidget2::divesChanged(const QVector<dive *> &dives, DiveField field)
|
||||
{
|
||||
// If the mode of the currently displayed dive changed, replot
|
||||
if (field.mode &&
|
||||
std::any_of(dives.begin(), dives.end(),
|
||||
[id = displayed_dive.id] (const dive *d)
|
||||
{ return d->id == id; } ))
|
||||
replot();
|
||||
}
|
||||
|
||||
void ProfileWidget2::actionRequestedReplot(bool)
|
||||
{
|
||||
settingsChanged();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue