diff options
Diffstat (limited to 'commands/command_edit.cpp')
-rw-r--r-- | commands/command_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/command_edit.cpp b/commands/command_edit.cpp index 0e1159f6d..c763cbffa 100644 --- a/commands/command_edit.cpp +++ b/commands/command_edit.cpp @@ -1167,7 +1167,7 @@ void RemoveCylinder::undo() { for (size_t i = 0; i < dives.size(); ++i) { std::vector<int> mapping = get_cylinder_map_for_add(dives[i]->cylinders.nr, indexes[i]); - add_to_cylinder_table(&dives[i]->cylinders, indexes[i], clone_cylinder(cyl[i])); + add_cylinder(&dives[i]->cylinders, indexes[i], clone_cylinder(cyl[i])); emit diveListNotifier.cylinderAdded(dives[i], indexes[i]); invalidate_dive_cache(dives[i]); // Ensure that dive is written in git_save() } |