- icons: rename radiotext icons

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2021-10-16 22:23:14 +02:00
committed by Thilo Graf
parent 74039af5c8
commit 55e8293fc5
6 changed files with 10 additions and 10 deletions

View File

@@ -173,7 +173,7 @@ void CInfoViewerBB::getBBIconInfo()
break;
case CInfoViewerBB::ICON_RT:
if (isRadioMode && g_settings.radiotext_enable)
iconView = checkBBIcon(NEUTRINO_ICON_RADIOTEXTGET, &w, &h);
iconView = checkBBIcon(NEUTRINO_ICON_RADIOTEXT_GET, &w, &h);
break;
case CInfoViewerBB::ICON_DD:
if( g_settings.infobar_show_dd_available )
@@ -541,9 +541,9 @@ void CInfoViewerBB::showIcon_RadioText(bool rt_available)
std::string rt_icon;
if (rt_available)
rt_icon = (g_Radiotext->S_RtOsd) ? NEUTRINO_ICON_RADIOTEXTGET : NEUTRINO_ICON_RADIOTEXTWAIT;
rt_icon = (g_Radiotext->S_RtOsd) ? NEUTRINO_ICON_RADIOTEXT_GET : NEUTRINO_ICON_RADIOTEXT_WAIT;
else
rt_icon = NEUTRINO_ICON_RADIOTEXTOFF;
rt_icon = NEUTRINO_ICON_RADIOTEXT_OFF;
showBBIcons(CInfoViewerBB::ICON_RT, rt_icon);
}