CrealityPrint: add calibration checkbox to send dialog

Add enableSelfTest checkbox to CrealityPrintHostSendDialog that
persists across sessions via AppConfig. The checkbox state is
passed to the upload via extendedInfo().

Signed-off-by: Igor Mammedov <niallain@gmail.com>
This commit is contained in:
Igor Mammedov
2026-04-23 00:49:21 +02:00
parent 02c71fa6c0
commit 35117ceedf
2 changed files with 33 additions and 1 deletions

View File

@@ -195,6 +195,9 @@ public:
virtual std::map<std::string, std::string> extendedInfo() const;
private:
static constexpr const char* CONFIG_KEY_ENABLESELFTEST = "crealityprint_enable_self_test";
bool m_enableSelfTest;
PrintHost* m_printhost;
};