fix linebreaks/tabs in epg+ footer

Origin commit data
------------------
Branch: ni/coolstream
Commit: cdea62ed25
Author: TangoCash <eric@loxat.de>
Date: 2024-10-07 (Mon, 07 Oct 2024)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
TangoCash
2024-10-07 20:24:49 +02:00
committed by vanhofen
parent af2aaab523
commit d35ca8abba

View File

@@ -392,6 +392,7 @@ void EpgPlus::ChannelEventEntry::paint(bool pisSelected, bool toggleColor)
{ {
shortepg = str_replace("\n", " ", shortepg); shortepg = str_replace("\n", " ", shortepg);
shortepg = str_replace("\\n", " ", shortepg); shortepg = str_replace("\\n", " ", shortepg);
shortepg = str_replace("\t", " ", shortepg);
} }
this->footer->paintEventDetails(this->channelEvent.description, ret ? shortepg : ""); this->footer->paintEventDetails(this->channelEvent.description, ret ? shortepg : "");