mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Fix crash when rejecting dive site changes
Emitting the stopFilterDiveSite signal caused us to clean up the UI which reset currentDs to NULL if this was a new dive site... Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
d6e32b02f6
commit
17b7bdfd2e
1 changed files with 1 additions and 2 deletions
|
@ -166,14 +166,13 @@ void LocationInformationWidget::acceptChanges()
|
||||||
|
|
||||||
void LocationInformationWidget::rejectChanges()
|
void LocationInformationWidget::rejectChanges()
|
||||||
{
|
{
|
||||||
emit stopFilterDiveSite();
|
|
||||||
Q_ASSERT(currentDs != NULL);
|
Q_ASSERT(currentDs != NULL);
|
||||||
if (dive_site_is_empty(currentDs)) {
|
if (dive_site_is_empty(currentDs)) {
|
||||||
delete_dive_site(currentDs->uuid);
|
delete_dive_site(currentDs->uuid);
|
||||||
displayed_dive.dive_site_uuid = 0;
|
displayed_dive.dive_site_uuid = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
resetState();
|
resetState();
|
||||||
|
emit stopFilterDiveSite();
|
||||||
emit informationManagementEnded();
|
emit informationManagementEnded();
|
||||||
emit coordinatesChanged();
|
emit coordinatesChanged();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue