@@ -41,4 +41,11 @@ Path::Path(QFile *file){
}
void Path::addStep(int indice){step.insert(indice, Step());}
void Path::addStep(int indice){
if(indice==-1){
step.append(Step());
}else{
step.insert(indice, Step());
The note is not visible to the blocked user.