From b4c2923dd255b17346ee7cf04fc2c7b3acf2e745 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 17 Apr 2021 18:00:13 +0200 Subject: [PATCH] add some info text --- owrx/controllers/settings/sdr.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/owrx/controllers/settings/sdr.py b/owrx/controllers/settings/sdr.py index 871dcb9..cfa0db0 100644 --- a/owrx/controllers/settings/sdr.py +++ b/owrx/controllers/settings/sdr.py @@ -281,6 +281,9 @@ class NewSdrDeviceController(SettingsFormController): "type", "Device type", [Option(sdr_type, name) for sdr_type, name in SdrDeviceDescription.getTypes().items()], + infotext="Note: Switching the type will not be possible after creation since the set of available " + + "options is different for each type.
Note: This dropdown only shows device types that have " + + "their requirements met. If a type is missing from the list, please check the feature report.", ), TextInput("id", "Device ID", validator=RequiredValidator()), )