Commit 1017d086 by Maarten L. Hekkelman

skip updating links when changing atom location

parent 32b1bbd9
...@@ -295,9 +295,9 @@ void Atom::AtomImpl::moveTo(const Point &p) ...@@ -295,9 +295,9 @@ void Atom::AtomImpl::moveTo(const Point &p)
if (not mClone) if (not mClone)
{ {
mRow.assign("Cartn_x", std::to_string(p.getX()), false, false); mRow.assign("Cartn_x", std::to_string(p.getX()), true, false);
mRow.assign("Cartn_y", std::to_string(p.getY()), false, false); mRow.assign("Cartn_y", std::to_string(p.getY()), true, false);
mRow.assign("Cartn_z", std::to_string(p.getZ()), false, false); mRow.assign("Cartn_z", std::to_string(p.getZ()), true, false);
} }
mLocation = p; mLocation = p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment