Fix cell copy functionality in constructor

This commit is contained in:
Max Luebke 2024-04-02 11:32:44 +00:00 committed by Max Lübke
parent cca7b95c82
commit c8923288ce

View File

@ -41,6 +41,7 @@ public:
if (n_cells > 1) {
std::string copy_string =
"COPY cell 1 2-" + std::to_string(n_cells) + "\n";
this->RunString(copy_string.c_str());
}
}