mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 23:46:24 -06:00
FIX:fixed incorrect disabled state of filaments material
Change-Id: I168131d90f4b7e987d026808366a08895e1b1524
This commit is contained in:
parent
e1199884d8
commit
81cb240dcc
2 changed files with 19 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue