mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 23:46:24 -06:00
FIX: fix lan_file mode for P1P
Change-Id: I71ffdb28363fe45b2d5bab01d34846c2462921a6 Signed-off-by: Stone Li <stone.li@bambulab.com>
This commit is contained in:
parent
21a6281998
commit
3e8671bcdf
3 changed files with 0 additions and 16 deletions
|
@ -639,17 +639,6 @@ bool MachineObject::is_support_ams_mapping_version(std::string module, std::stri
|
|||
return result;
|
||||
}
|
||||
|
||||
bool MachineObject::is_only_support_cloud_print()
|
||||
{
|
||||
auto ap_ver_it = module_vers.find("rv1126");
|
||||
if (ap_ver_it != module_vers.end()) {
|
||||
if (ap_ver_it->second.sw_ver > "00.00.12.61") {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static float calc_color_distance(wxColour c1, wxColour c2)
|
||||
{
|
||||
float lab[2][3];
|
||||
|
|
|
@ -484,7 +484,6 @@ public:
|
|||
bool can_unload_filament();
|
||||
bool is_U0_firmware();
|
||||
bool is_support_ams_mapping();
|
||||
bool is_only_support_cloud_print();
|
||||
static bool is_support_ams_mapping_version(std::string module, std::string version);
|
||||
|
||||
int ams_filament_mapping(std::vector<FilamentInfo> filaments, std::vector<FilamentInfo> &result, std::vector<int> exclude_id = std::vector<int>());
|
||||
|
|
|
@ -2165,10 +2165,6 @@ void SelectMachineDialog::on_ok()
|
|||
|
||||
m_print_job->has_sdcard = obj_->has_sdcard();
|
||||
|
||||
if (obj_->is_only_support_cloud_print()) {
|
||||
m_print_job->cloud_print_only = true;
|
||||
}
|
||||
|
||||
|
||||
bool timelapse_option = select_timelapse->IsShown() ? m_checkbox_list["timelapse"]->GetValue() : true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue