diff --git a/FiveAxisMillingData.cpp b/FiveAxisMillingData.cpp index 822f837..9409a4a 100644 --- a/FiveAxisMillingData.cpp +++ b/FiveAxisMillingData.cpp @@ -324,7 +324,7 @@ FiveAxisMillingData::VerifyTool( const ToolsMgr* pToolsMgr, const string& sVal, pTdata = pToolsMgr->GetTool( sVal) ; if ( pTdata == nullptr) return false ; - if ( ( pTdata->m_nType & TF_MILL) == 0) + if ( ( pTdata->m_nType & TF_MILL) == 0 && ( pTdata->m_nType & TF_SAWBLADE) == 0) return false ; return true ; }