]> Nutra Git (v1) - gamesguru/feather.git/commitdiff
wizard: don't enumerate supported devices
authortobtoht <tob@featherwallet.org>
Sun, 29 Sep 2024 12:28:56 +0000 (14:28 +0200)
committertobtoht <tob@featherwallet.org>
Sun, 29 Sep 2024 12:28:56 +0000 (14:28 +0200)
src/wizard/PageHardwareDevice.cpp

index 7fecf86fbbf60a642158a510830287600100b563..b1c749cab8e66e425d3d6dc7b31751fd0a540caf 100644 (file)
@@ -16,8 +16,8 @@ PageHardwareDevice::PageHardwareDevice(WizardFields *fields, QWidget *parent)
 {
     ui->setupUi(this);
 
-    ui->combo_deviceType->addItem("Ledger Nano S (PLUS) / X", DeviceType::LEDGER);
-    ui->combo_deviceType->addItem("Trezor Model T / Safe 3", DeviceType::TREZOR);
+    ui->combo_deviceType->addItem("Ledger", DeviceType::LEDGER);
+    ui->combo_deviceType->addItem("Trezor", DeviceType::TREZOR);
 
     connect(ui->btnOptions, &QPushButton::clicked, this, &PageHardwareDevice::onOptionsClicked);
 }