Adding manual TrackPoints when showOnlyPeople is on
It is not possible to manually add a TrackPoint, when showOnlyPeople or showOnlyPeopleList are enabled. No warning or such is displayed either.
Important part in Tracker::addPoint
if ((onlyVisible.empty()) && !found)
{
iNearest = size(); // << " (new) ";
if (p.qual() > 100) //manual add
p.setQual(100);
append(TrackPerson(/*p.markerID()>0 ? p.markerID() :*/ 0, frame, p, p.getMarkerID())); // 0 is person number/markerID; newReco is set to true by default
}