From 1582a2bfcc80ae0b9468f42b5eb6b881f3328ebe Mon Sep 17 00:00:00 2001 From: TangoCash Date: Mon, 7 Oct 2024 20:24:49 +0200 Subject: [PATCH] fix linebreaks/tabs in epg+ footer Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/cdea62ed25f15240c02c8a5b343067865742c7c2 Author: TangoCash Date: 2024-10-07 (Mon, 07 Oct 2024) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/gui/epgplus.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/epgplus.cpp b/src/gui/epgplus.cpp index d8979ae0f..9aeef20c1 100644 --- a/src/gui/epgplus.cpp +++ b/src/gui/epgplus.cpp @@ -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("\t", " ", shortepg); } this->footer->paintEventDetails(this->channelEvent.description, ret ? shortepg : "");