Skip to content

Commit

Permalink
MythUI: Don't complain about combining cutdown and scroll, when it is…
Browse files Browse the repository at this point in the history
… not true
  • Loading branch information
jpoet committed Jan 31, 2012
1 parent 8f0cbb0 commit 5eca36f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/mythuitext.cpp
Expand Up @@ -270,7 +270,7 @@ void MythUIText::SetCutDown(Qt::TextElideMode mode)
if (mode != m_Cutdown)
{
m_Cutdown = mode;
if (m_scrolling && m_Cutdown)
if (m_scrolling && m_Cutdown != Qt::ElideNone)
{
LOG(VB_GENERAL, LOG_ERR, QString("'%1' (%2): <scroll> and "
"<cutdown> are not combinable.")
Expand Down

0 comments on commit 5eca36f

Please sign in to comment.