Delete bugwizard

This commit is contained in:
QIDI TECH
2023-06-28 11:36:09 +08:00
parent aa2c60497f
commit 297fda6005
3 changed files with 4 additions and 10 deletions

View File

@@ -58,7 +58,7 @@ using Utils::Serial;
// USB IDs used to perform device lookup
enum {
USB_VID_PRUSA = 0x2c99,
USB_VID_QIDI = 0x2c99,
USB_PID_MK2 = 1,
USB_PID_MK3 = 2,
USB_PID_MMU_BOOT = 3,
@@ -409,7 +409,7 @@ void FirmwareDialog::priv::avr109_wait_for_bootloader(Avr109Pid usb_pid, unsigne
auto ports = Utils::scan_serial_ports_extended();
ports.erase(std::remove_if(ports.begin(), ports.end(), [=](const SerialPortInfo &port ) {
return port.id_vendor != USB_VID_PRUSA || port.id_product != usb_pid.boot;
return port.id_vendor != USB_VID_QIDI || port.id_product != usb_pid.boot;
}), ports.end());
if (ports.size() == 1) {
@@ -442,7 +442,7 @@ void FirmwareDialog::priv::avr109_lookup_port(Avr109Pid usb_pid)
auto ports = Utils::scan_serial_ports_extended();
ports.erase(std::remove_if(ports.begin(), ports.end(), [=](const SerialPortInfo &port ) {
return port.id_vendor != USB_VID_PRUSA ||
return port.id_vendor != USB_VID_QIDI ||
(port.id_product != usb_pid.boot && port.id_product != usb_pid.app);
}), ports.end());

View File

@@ -2021,7 +2021,7 @@ void GUI_App::import_model(wxWindow *parent, wxArrayString& input_files) const
{
input_files.Clear();
wxFileDialog dialog(parent ? parent : GetTopWindow(),
_L("Choose one or more files (STL/3MF/STEP/OBJ/AMF/PRUSA):"),
_L("Choose one or more files (STL/3MF/STEP/OBJ/AMF/QIDI):"),
from_u8(app_config->get_last_dir()), "",
file_wildcards(FT_MODEL), wxFD_OPEN | wxFD_MULTIPLE | wxFD_FILE_MUST_EXIST);