From eff6baa31db71e41d8e75eedc86e6bb1fa77af40 Mon Sep 17 00:00:00 2001 From: jimiatnymbl Date: Sun, 16 Jan 2022 07:12:58 -0700 Subject: [PATCH] Formatting --- components/liveTv/ProgramDetails.brs | 30 ++++++++++++++-------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/components/liveTv/ProgramDetails.brs b/components/liveTv/ProgramDetails.brs index 546ed4fc..2dbe5947 100644 --- a/components/liveTv/ProgramDetails.brs +++ b/components/liveTv/ProgramDetails.brs @@ -288,9 +288,9 @@ sub focusChanged() m.viewChannelOutline.visible = true m.recordOutline.visible = false m.recordSeriesOutline.visible = false - m.viewChannelButtonBackground.blendColor="#006fab" - m.recordButtonBackground.blendColor="#000000" - m.recordSeriesButtonBackground.blendColor="#000000" + m.viewChannelButtonBackground.blendColor = "#006fab" + m.recordButtonBackground.blendColor = "#000000" + m.recordSeriesButtonBackground.blendColor = "#000000" else m.top.watchSelectedChannel = false m.top.recordSelectedChannel = false @@ -329,33 +329,33 @@ function onKeyEvent(key as string, press as boolean) as boolean m.recordButton.setFocus(true) m.viewChannelOutline.visible = false m.recordOutline.visible = true - m.viewChannelButtonBackground.blendColor="#000000" - m.recordButtonBackground.blendColor="#006fab" - m.recordSeriesButtonBackground.blendColor="#000000" + m.viewChannelButtonBackground.blendColor = "#000000" + m.recordButtonBackground.blendColor = "#006fab" + m.recordSeriesButtonBackground.blendColor = "#000000" return true else if key = "right" and m.recordButton.hasFocus() m.recordSeriesButton.setFocus(true) m.recordOutline.visible = false m.recordSeriesOutline.visible = true - m.viewChannelButtonBackground.blendColor="#000000" - m.recordButtonBackground.blendColor="#000000" - m.recordSeriesButtonBackground.blendColor="#006fab" + m.viewChannelButtonBackground.blendColor = "#000000" + m.recordButtonBackground.blendColor = "#000000" + m.recordSeriesButtonBackground.blendColor = "#006fab" return true else if key = "left" and m.recordSeriesButton.hasFocus() m.recordButton.setFocus(true) m.recordOutline.visible = true m.recordSeriesOutline.visible = false - m.viewChannelButtonBackground.blendColor="#000000" - m.recordButtonBackground.blendColor="#006fab" - m.recordSeriesButtonBackground.blendColor="#000000" + m.viewChannelButtonBackground.blendColor = "#000000" + m.recordButtonBackground.blendColor = "#006fab" + m.recordSeriesButtonBackground.blendColor = "#000000" return true else if key = "left" and m.recordButton.hasFocus() m.viewChannelButton.setFocus(true) m.viewChannelOutline.visible = true m.recordOutline.visible = false - m.viewChannelButtonBackground.blendColor="#006fab" - m.recordButtonBackground.blendColor="#000000" - m.recordSeriesButtonBackground.blendColor="#000000" + m.viewChannelButtonBackground.blendColor = "#006fab" + m.recordButtonBackground.blendColor = "#000000" + m.recordSeriesButtonBackground.blendColor = "#000000" return true end if end if