mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-07-22 10:22:08 +00:00
NEW: add some filament check supports for printers
JIRA: [STUDIO-12604] Change-Id: Ic0e7b517319621907c3c6b8ad82dbcf881c780e8 (cherry picked from commit 55a8c98e9125cdacc801ecebfd82acdcc3e8e7f7)
This commit is contained in:
@@ -227,13 +227,15 @@ public:
|
||||
|
||||
struct ConfirmBeforeSendInfo
|
||||
{
|
||||
public:
|
||||
enum InfoLevel {
|
||||
Normal = 0,
|
||||
Warning = 1
|
||||
};
|
||||
InfoLevel level;
|
||||
wxString text;
|
||||
ConfirmBeforeSendInfo(wxString txt, InfoLevel lev = Normal) : text(txt), level(lev) {}
|
||||
wxString wiki_url;
|
||||
ConfirmBeforeSendInfo(const wxString& txt, const wxString& url = wxEmptyString, InfoLevel lev = Normal) : text(txt), wiki_url(url), level(lev){}
|
||||
};
|
||||
|
||||
class ConfirmBeforeSendDialog : public DPIDialog
|
||||
|
||||
Reference in New Issue
Block a user