mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-20 22:05:13 +00:00
input merging mechanism
This commit is contained in:
parent
bec61465c9
commit
4316832b95
2 changed files with 13 additions and 10 deletions
|
|
@ -17,9 +17,9 @@ class RtlSdrSource(ConnectorSource):
|
|||
|
||||
class RtlSdrDeviceDescription(SdrDeviceDescription):
|
||||
def getInputs(self) -> List[Input]:
|
||||
return [
|
||||
TextInput(
|
||||
"test",
|
||||
"This is a drill"
|
||||
),
|
||||
]
|
||||
return self.mergeInputs(
|
||||
super().getInputs(),
|
||||
[
|
||||
TextInput("test", "This is a drill"),
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue