prevent part design features from accidently cross referencing

This commit is contained in:
Stefan Tröger
2015-07-16 22:47:39 +02:00
parent 1711dd4739
commit b8ccce827e
3 changed files with 32 additions and 9 deletions

View File

@@ -291,6 +291,14 @@ void TaskFeaturePick::onSelectionChanged(const Gui::SelectionChanges& msg)
}
}
void TaskFeaturePick::showExternal(bool val) {
ui->checkOtherBody->setChecked(val);
ui->checkOtherPart->setChecked(val);
updateList();
}
//**************************************************************************
//**************************************************************************
// TaskDialog
@@ -343,4 +351,9 @@ bool TaskDlgFeaturePick::reject()
return true;
}
void TaskDlgFeaturePick::showExternal(bool val) {
pick->showExternal(val);
}
#include "moc_TaskFeaturePick.cpp"