From def9fb232f09390a895a359ebf9e9d752796c3f4 Mon Sep 17 00:00:00 2001 From: Jacek Jendrzej Date: Thu, 5 Sep 2024 18:23:54 +0200 Subject: [PATCH] channellist fix footer line --- src/gui/channellist.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/channellist.cpp b/src/gui/channellist.cpp index 067501529..b6e3136d8 100644 --- a/src/gui/channellist.cpp +++ b/src/gui/channellist.cpp @@ -1699,6 +1699,7 @@ void CChannelList::paintDetails(int index) } if (!(text2.empty())) { + text2 = str_replace("\\n", " ", text2); while ( text2.find_first_of("[ -.+*#?=!$%&/]+") == 0 ) text2 = text2.substr( 1 ); text2 = text2.substr( 0, text2.find('\n') );