aboutsummaryrefslogtreecommitdiff
path: root/lib/service/listboxservice.cpp
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-03-24 15:38:19 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-03-24 15:38:19 +0100
commit2afd30fecf3ab4393dd47f905685151b56db0a22 (patch)
tree16cda060a09d565f80ce5d90f722b51578d03495 /lib/service/listboxservice.cpp
parent2aaafed9667ed7fe91d01436a3a109d8ff3f7bbf (diff)
downloadenigma2-2afd30fecf3ab4393dd47f905685151b56db0a22.tar.gz
enigma2-2afd30fecf3ab4393dd47f905685151b56db0a22.zip
lib/service/listboxservice.cpp: fix no more visible event descriptions in channelselection since event progress support
Diffstat (limited to 'lib/service/listboxservice.cpp')
-rw-r--r--lib/service/listboxservice.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/service/listboxservice.cpp b/lib/service/listboxservice.cpp
index faee1ee6..9de88c14 100644
--- a/lib/service/listboxservice.cpp
+++ b/lib/service/listboxservice.cpp
@@ -585,7 +585,7 @@ void eListboxServiceContent::paint(gPainter &painter, eWindowStyle &style, const
}
case celServiceInfo:
{
- if ( isPlayable && evt )
+ if ( isPlayable && (evt || !service_info->getEvent(*m_cursor, evt)) )
{
std::string name = evt->getEventName();
if (!name.length())
@@ -685,7 +685,6 @@ void eListboxServiceContent::paint(gPainter &painter, eWindowStyle &style, const
eRect area = m_element_position[p];
if (area.width() > 0 && (isPlayable || isMarker))
{
-
if ( isPlayable && service_info && !service_info->getEvent(*m_cursor, evt) )
{
if (!selected && m_color_set[serviceEventProgressbarBorderColor])