mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-02-23 21:05:31 -07:00
FIX: always show select nozzle type notice
jira: [STUDIO-9151] Change-Id: I432beaa11c0a776ca214cbfc675227f95837b426 (cherry picked from commit 6587ac01b83268982a049b5ac0c45f8aac2b3f5d)
This commit is contained in:
parent
81e57f3d8d
commit
09a8ccaa18
3 changed files with 24 additions and 5 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue