From faa434405cfebaee20dd7e2ccf0f7bd4b054747f Mon Sep 17 00:00:00 2001 From: Jas Singh Date: Mon, 29 Jul 2024 02:12:14 -0700 Subject: [PATCH] Fix verbiage of OSD theming options. (#35) --- widget/settings/pages/theme/osd/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/widget/settings/pages/theme/osd/index.ts b/widget/settings/pages/theme/osd/index.ts index ca9562e..2283f56 100644 --- a/widget/settings/pages/theme/osd/index.ts +++ b/widget/settings/pages/theme/osd/index.ts @@ -14,12 +14,12 @@ export const OsdTheme = () => { children: [ Header('On Screen Display Settings'), Option({ opt: options.theme.osd.bar_color, title: 'Bar', type: 'color' }), - Option({ opt: options.theme.osd.bar_overflow_color, title: 'Overflow', subtitle: 'Overflow color is for when the volume goes over a 100', type: 'color' }), + Option({ opt: options.theme.osd.bar_overflow_color, title: 'Bar Overflow', subtitle: 'Overflow color is for when the volume goes over a 100', type: 'color' }), Option({ opt: options.theme.osd.bar_empty_color, title: 'Bar Background', type: 'color' }), - Option({ opt: options.theme.osd.bar_container, title: 'Bar Container Background', type: 'color' }), - Option({ opt: options.theme.osd.icon, title: 'Icon Background', type: 'color' }), + Option({ opt: options.theme.osd.bar_container, title: 'Bar Container', type: 'color' }), + Option({ opt: options.theme.osd.icon, title: 'Icon', type: 'color' }), Option({ opt: options.theme.osd.icon_container, title: 'Icon Container', type: 'color' }), - Option({ opt: options.theme.osd.label, title: 'Value', type: 'color' }), + Option({ opt: options.theme.osd.label, title: 'Value Text', type: 'color' }), ] }) })