mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-04-06 15:04:13 +00:00
separate background decoding
This commit is contained in:
parent
d998ab5c61
commit
e61dde7d0e
4 changed files with 33 additions and 11 deletions
20
owrx/controllers/settings/backgrounddecoding.py
Normal file
20
owrx/controllers/settings/backgrounddecoding.py
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
from owrx.controllers.settings import SettingsFormController, Section
|
||||
from owrx.form import CheckboxInput, ServicesCheckboxInput
|
||||
|
||||
|
||||
class BackgroundDecodingController(SettingsFormController):
|
||||
def getTitle(self):
|
||||
return "Background decoding"
|
||||
|
||||
def getSections(self):
|
||||
return [
|
||||
Section(
|
||||
"Background decoding",
|
||||
CheckboxInput(
|
||||
"services_enabled",
|
||||
"Service",
|
||||
checkboxText="Enable background decoding services",
|
||||
),
|
||||
ServicesCheckboxInput("services_decoders", "Enabled services"),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue