Adding a Text item turns off the base plan lock
Code: Select all
boolean newBasePlanLocked = basePlanLocked && !isLabelPartOfBasePlan(label);
doAddLabel(this.home, label, newBasePlanLocked);
Code: Select all
protected boolean isLabelPartOfBasePlan(Label label) {
return true;
}