mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 10:02:12 +00:00
FIX: always show select nozzle type notice
jira: [STUDIO-9151] Change-Id: I432beaa11c0a776ca214cbfc675227f95837b426 (cherry picked from commit 6587ac01b83268982a049b5ac0c45f8aac2b3f5d)
This commit is contained in:
@@ -5428,6 +5428,16 @@ std::string MachineObject::get_string_from_fantype(int type)
|
||||
return "";
|
||||
}
|
||||
|
||||
NozzleFlowType MachineObject::get_nozzle_flow_type(int extruder_id) const
|
||||
{
|
||||
if (is_nozzle_flow_type_supported() && m_extder_data.extders.size() > extruder_id)
|
||||
{
|
||||
return m_extder_data.extders[extruder_id].current_nozzle_flow_type;
|
||||
}
|
||||
|
||||
return NozzleFlowType::NONE_FLOWTYPE;
|
||||
}
|
||||
|
||||
void MachineObject::converse_to_duct(bool is_suppt_part_fun, bool is_suppt_aux_fun, bool is_suppt_cham_fun)
|
||||
{
|
||||
m_air_duct_data.modes.clear();
|
||||
|
||||
Reference in New Issue
Block a user