This commit is contained in:
2020-06-03 16:10:47 +02:00
parent 223e24f924
commit 3bdc8e95ce
5 changed files with 493 additions and 190 deletions

View File

@ -1527,7 +1527,7 @@ std::string CmdProxy::ROI(int action) {
t.xmin = StringTo<int>(args[0]);
t.xmax = StringTo<int>(args[1]);
det->setROI(t, det_id);
os << '[' << t.xmin << ", " << t.xmax << "] \n";
os << '[' << t.xmin << ", " << t.xmax << "]\n";
} else {
throw sls::RuntimeError("Unknown action");
}