Skip to content

Commit

Permalink
Fix bug caused by commit a3ae3a8
Browse files Browse the repository at this point in the history
Problem was that in Terra theme, watched icon was not disappearing
when an unwatched show was selected.

This reverts part of the above mentioned commit that was causing
this problem.

(cherry picked from commit dbf9baa)
  • Loading branch information
bennettpeter committed Oct 6, 2020
1 parent 8ca7747 commit abad9e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythui/mythuistatetype.cpp
Expand Up @@ -93,7 +93,7 @@ bool MythUIStateType::DisplayState(const QString &name)
if (i != m_ObjectsByName.end())
m_CurrentState = i.value();
else
return false;
m_currentState = nullptr;

if (m_CurrentState != old)
{
Expand Down

0 comments on commit abad9e2

Please sign in to comment.