diff --git a/owrx/controllers/settings/general.py b/owrx/controllers/settings/general.py index 7fa98cce..bd786c41 100644 --- a/owrx/controllers/settings/general.py +++ b/owrx/controllers/settings/general.py @@ -138,7 +138,7 @@ class GeneralSettingsController(SettingsFormController): "Waterfall settings", DropdownInput( "waterfall_scheme", - "Waterfall color scheme", + "Waterfall color theme", options=WaterfallOptions, ), TextAreaInput( diff --git a/owrx/waterfall.py b/owrx/waterfall.py index 9b073ea9..6c8acab7 100644 --- a/owrx/waterfall.py +++ b/owrx/waterfall.py @@ -309,11 +309,11 @@ class CustomWaterfall(Waterfall): class WaterfallOptions(DropdownEnum): - DEFAULT = ("Google Turbo (OpenWebRX default)", GoogleTurboWaterfall) + DEFAULT = ("Google Turbo Theme (OpenWebRX default)", GoogleTurboWaterfall) TEEJEEZ = ("Theme by Teejeez (default in OpenWebRX < 0.20)", TeejeezWaterfall) - HA7ILM = ("Theme by Andras (HA7ILM)", Ha7ilmWaterfall) + HA7ILM = ("Legacy Theme by Andras (HA7ILM)", Ha7ilmWaterfall) ZORAN = ("Theme by Zoran (9A6NDZ)", ZoranWaterfall) - ECLIPSE = ("Eclipse by Dimitar (LZ2DMV) and LZ4ZD", EclipseWaterfall) + ECLIPSE = ("Eclipse Theme by Dimitar (LZ2DMV) and LZ4ZD", EclipseWaterfall) CUSTOM = ("Custom", CustomWaterfall) def __new__(cls, *args, **kwargs):