FIX:fixed incorrect disabled state of filaments material

Change-Id: I168131d90f4b7e987d026808366a08895e1b1524
This commit is contained in:
tao wang 2023-05-31 11:04:38 +08:00 committed by Lane.Wei
parent e1199884d8
commit 81cb240dcc
2 changed files with 19 additions and 4 deletions

View file

@ -238,6 +238,12 @@ private:
#define SELECT_MACHINE_DIALOG_SIMBOOK_SIZE wxSize(FromDIP(370), FromDIP(64))
enum PrintPageMode {
PrintPageModePrepare = 0,
PrintPageModeSending,
PrintPageModeFinish
};
enum PrintDialogStatus {
PrintStatusInit = 0,
PrintStatusNoUserLogin,
@ -287,6 +293,7 @@ private:
bool m_export_3mf_cancel{ false };
bool m_is_canceled{ false };
bool m_is_rename_mode{ false };
PrintPageMode m_print_page_mode{PrintPageMode::PrintPageModePrepare};
std::string m_print_error_msg;
std::string m_print_error_extra;
std::string m_printer_last_select;