FIX:The plate type in dialog of the plate settings does not match the machine

jira: STUDIO-12181
Change-Id: I1d055e3530f19946073c30647c12fbab2be97d50
(cherry picked from commit 54b6cc3c41319ddfc0e3d78f41b903508f0f4c15)
This commit is contained in:
zhou.xu
2025-05-14 11:26:14 +08:00
committed by Noisyfox
parent 0ad5ff27eb
commit 32ca001701
6 changed files with 91 additions and 23 deletions

View File

@@ -112,14 +112,9 @@ public:
if (m_print_seq_choice != nullptr)
choice = m_print_seq_choice->GetSelection();
return choice;
};
}
int get_bed_type_choice() {
int choice = 0;
if (m_bed_type_choice != nullptr)
choice = m_bed_type_choice->GetSelection();
return choice;
};
BedType get_bed_type_choice();
wxString get_plate_name() const;
void set_plate_name(const wxString& name);
@@ -167,6 +162,7 @@ protected:
protected:
ComboBox* m_bed_type_choice { nullptr };
std::vector<BedType> m_cur_combox_bed_types;
ComboBox* m_print_seq_choice { nullptr };
ComboBox* m_first_layer_print_seq_choice { nullptr };
ComboBox* m_spiral_mode_choice { nullptr };