From d35ca8abba6033f982f0e482eb919c3d7aac5a92 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 ------------------ Branch: ni/coolstream 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 bb766240d..57bd1bd70 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 : "");